php pg_exec,odbc_exec

用户评论:

[#1]

petercdow at gmail dot com [2013-10-14 01:54:10]

An SQL statement that contains quotes (i.e. ") instead of apostrophes (i.e. ') to delimit strings works fine in Access, however, in odbc_exec, it fails with

[Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 6.

For example:

$q = "INSERT INTO TableA (Fld1, Fld2, Fld3) VALUES('A', 'B', 'C');"

works fine in both Access and ODBC, but

$q = 'INSERT INTO TableA (Fld1, Fld2, Fld3) VALUES("A", "B", "C");'

fails with the above error.

[#2]

mir eder [2007-08-28 03:39:22]

If you are having problems with truncated text fields from ODBC queries (pe. at 4096 characters), try some of the following:

in php.ini:

- odbc.defaultlrl = 65536

in your php code, before your queries:

- ini_set ( 'odbc.defaultlrl' , '65536' );

[#3]

delowing gmail dot com [2006-09-27 20:19:33]

It is easy to inject evil code into SQL statements. This wraps parameters in quotes so they are not executable. In your own stored procedures you can convert the string to numeric as needed.

function sql_make_string($sin){

return "'".str_replace("'","''",$sin)."'";

}

// this may delete all data from MYTABLE

$evil = "734'; DELETE FROM MYTABLE; print 'ha ha";

$sql = "SELECT * FROM MYTABLE WHERE mykey = '$evil'";

$rst = odbc_exec($connection,$sql);

// this probably will not delete the data.

$good = sql_make_string($evil);

$sql = "SELECT * FROM MYTABLE WHERE mykey =".$good

$rst = odbc_exec($connection,$sql);

[#4]

[2005-08-30 06:18:49]

The following seems counterintuitive to me and so I am constantly getting burned by it.  Just thought I'd add a note for anyone else who might also get burned.

if (!odbc_exec("select MyValue from MyTable where Key1='x' and Key2='y'"))

is not a good way to search for the existence of a record with Key1 = x and Key2 = y.  The odbc_exec always returns a result handle, even though there aren't any records.

Rather, you must use one of the fetch functions to find out that the record really doesn't exist.  This should work:

if (!($Selhand = odbc_exec("select MyValue from MyTable where Key1='x' and Key2='y'"))

|| !odbc_result($Selhand, 1))

[#5]

fuadMD at gmail dot com [2005-05-24 00:34:40]

//    odbc_connect, odbc_exec, getting col Names,

//    odbc_fetch_row and no of rows. hope it helps

// - your driver should point to your MS access file$conn=odbc_connect('MSAccessDriver','','');$nrows=0;

if ($conn)

{$sql="select * from$month";//this function will execute the sql satament$result=odbc_exec($conn,$sql);

echo"

echo"

 ";// -- print field name$colName=odbc_num_fields($result);

for ($j=1;$j<=$colName;$j++)

{

echo"

   ";

echoodbc_field_name($result,$j);

echo"

 ";

}$j=$j-1;$c=0;// end of field nameswhile(odbc_fetch_row($result))// getting data{$c=$c+1;

if ($c%2==0)

echo"

\n";

else

echo"

\n";

for($i=1;$i<=odbc_num_fields($result);$i++)

{

echo"

";

echoodbc_result($result,$i);

echo"

";

if ($i%$j==0)

{$nrows+=1;// counting no of rows}

}

echo"

";

}

echo" \n";

echo"

\n";// --end of tableif ($nrows==0) echo"
 Nothing for$monthyet! Try back later
  
";

else echo"

 Total Records:$nrows
  
";odbc_close($conn);

}

else echo"odbc not connected 
";?>

[#6]

james @ php-for-beginners co uk [2005-03-18 04:54:37]

hi all, I managed to get this little snippet working, it's pretty useful if you have long forms to be inserted into a database.

if ( ! empty ( $_POST ) ){

array_pop($_POST);

foreach($_POST as $key => $val){

$columns .= addslashes($key) . ", ";

$values .= "'" . addslashes($val) . "', ";

}

$values = substr_replace($values, "", -2);

$columns = substr_replace($columns, "", -2);

$sql = "INSERT INTO table ($columns) VALUES ($values)";

echo $sql;

$results = odbc_exec($conn, $sql);

if ($results){

echo "Query Executed";

}else {

echo "Query failed " .odbc_error();

}

}

Not the most secure in the world but, speeds up collecting data from large forms.

[#7]

Sean Boulter [2004-04-21 17:28:54]

If a single quote exists within the field specified by your WHERE statement, ODBC fails because of a parsing error.  Although it seems intuitive, using \" around the field does not work (\"$var\").  The only solution I found was to replace all single quotes in my field with two single quotes.  ODBC interprets the first single quote as an escape character and interprets the second single quote as a literal.  Thanks to http://www.devguru.com/features/knowledge_base/A100206.html for this tip.

[#8]

rob at vendorpromotions dot com [2003-06-17 01:29:40]

This opens select statements 'for update' by default in db2.  If you're using db2, you have to tack on 'for read only' at the end to select from SYSCAT.TABLES, for example, without firing an error like

Warning: SQL error: [IBM][CLI Driver][DB2/LINUX] SQL0151N The column "MAXFREESPACESEARCH" cannot be updated. SQLSTATE=42808 , SQL state 42808 in SQLExecDirect

For example :

$query = odbc_exec($conn, "select * from syscat.tables for read only");

odbc_result_all($query);

will work (only for db2).  I don't know about other databases.

The select statement will work in the 'db2' command line, but not in php, because of this side effect.

[#9]

rupix at rediffmail dot com [2003-04-05 07:05:35]

I tried the following line of code

$odbc=odbc_connect("pbk","root","") or die(odbc_errormsg());$q="insert into pbk values(\"$name\", \"$phone\")";

print$q;odbc_exec($odbc,$q) or die("

".odbc_errormsg());?>

it does not work. However if I use single quotes instead of \" the thing runs smoothly

thus the following would work

$odbc=odbc_connect("pbk","yourworstnightmare","abracadabra") or die(odbc_errormsg());$q="insert into pbk values('$name', '$phone')";

print$q;odbc_exec($odbc,$q) or die("

".odbc_errormsg());?>

Also having a user dsn is no good on win2k. Always have a System DSN. I don't know yet what are the implications of the same.

[#10]

das_yrch at hotmail dot com [2003-03-07 03:17:14]

I tried this way to see the results of a query and it works!!

$Conn = odbc_connect

("bbdd_usuaris","","",SQL_CUR_USE_ODBC );

$result=odbc_exec($Conn,"select nom from usuaris;");

while(odbc_fetch_row($result)){

for($i=1;$i<=odbc_num_fields($result);$i++){

echo "Result is ".odbc_result($result,$i);

}

}

[#11]

miguel dot erill at doymer dot com [2002-07-23 15:33:14]

In a previous contribution it was told that if you're running NT/IIS with PHP 3.0.11 you can use MS Access dbs "stored procedures".

That was right, but if those stores procedures have parameters you have to supply them in the command line like this:

$conn_id = odbc_connect( "odbc_test_db", "","", SQL_CUR_USE_DRIVER );

$qry_id = odbc_do( $conn_id, "{CALL MyQuery(".$param.")}" );

[#12]

martin at NOSPAMkouba dot at [2002-02-05 08:37:00]

"[Microsoft][ODBC Microsoft Access Driver] Too few

parameters. Expected 1."

this not so clear to understand error comes when using access-odbc and a field name can't be found. check for correct spelling of fields.

[#13]

lee200082 at hotmail dot com [2002-01-21 17:07:19]

As an addition to the note about square brackets earlier:

Enclosing sql field names in '[' and ']' also allows you to use MS Access reserved words like 'date' and 'field' and 'time' in your SQL query... it seems that the square brackets simply tell Access to ignore any other meaning whatever is inside them has and take them simply as field names.

[#14]

sk2xml at gmx dot net [2001-11-21 06:15:49]

Problem: Fieldnames in SQL-Statement have blanks and [] don't work!

Solution: Try "" instead

Ex.:

SELECT table2.first, table1.[last name] FROM tabel1, table2 -> don't work

SELECT table2.first, table1.\"last name\" FROM tabel1, table2 -> Try this

PS: Don't forget the espace characters !!!

[#15]

akchu at at ualberta dot ca [2001-01-07 20:41:02]

ODBC/MS Access Date Fields:

Matching dates in SELECT statements for MS Access requires the following format:

#Y-m-d H:i:s#

for example:

SELECT * FROM TableName WHERE Birthdate = #2001-01-07 00:00:00#

or

SELECT * FROM TableName WHERE Birthdate BETWEEN #2000-01-07 00:00:00# AND #2001-01-07 00:00:00#

This took me forever to figure out.

[#16]

vpil at retico dot com [2000-11-06 06:24:07]

Additional links to ODBC_exec:

How to actually write the SQL commands:

http://www.roth.net/perl/odbc/faq/

http://www.netaxs.com/~joc/perl/article/SQL.html

Demystifying SQL

BIG REF MANUAL:

http://w3.one.net/~jhoffman/sqltut.htm

Introduction to Structured Query Language

Covers read, add, modify & delete of data.

[#17]

phobo at at at paradise dot net dot nz [2000-11-02 06:26:32]

If Openlink -> MS Access Database fails and gives "Driver Not Capable" error or "No tuples available" warning, use the SQL_CUR_USE_ODBC cursor when using odbc_connect()...

Siggy

[#18]

andreas dot brunner at rubner dot com [2000-07-07 16:54:19]

I wanted to access an MSAccess database via ODBC. The connection functioned without problems, but when I placed a SQL statement into my odbc_exec() i always got an error:

Warning: SQL error: [Microsoft][ODBC Driver Manager] Driver does not support that function, SQL state IM001 in SQLSetStmtOption in \\Server\directory/test.php3 on line 19.

Resolved my problem by myself: i simply had to install a new odbc-driver from the microsoft homepage.

[#19]

gross at arkana dot de [1999-10-28 06:03:29]

If you're running NT/IIS with PHP 3.0.11 and want to use MS Access dbs with "stored procedures" you can send an ODBC SQL query like:

$conn_id=odbc_connect("odbc_test_db","","",SQL_CUR_USE_DRIVER);$qry_id=odbc_do($conn_id,"{CALL MyQuery}");?>

This way you don't need to integrate query strings like

SELECT * FROM TblObject WHERE (((TblObject.something) Like "blahblahblah"));

in the php file. You directly call the query "MyQuery" that was generated by MS Access.

[#20]

rmkim at uwaterloo dot ca [1999-08-25 11:13:41]

for Win32(NT) and MSAcess 2000, whenever you retrieve a date column/field, php will automatically convert it to 'yyyy/mm/dd hh:mm:ss' format regardless of the style of date you've denoted in Access.

This seems to pose a problem when you exec SELECT, UPDATE, or DELETE queries, but strangley INSERT works fine. I've tried parsing the date into the desired format, but php still yells criteria mismatch.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值