|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-23 02:59 UTC] zak at cvs dot php dot net
[2001-02-13 15:40 UTC] cynic@php.net
[2001-02-13 15:56 UTC] kalowsky@php.net
[2001-03-11 21:24 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 07:00:01 2025 UTC |
while use odbc prepare, if query statment owns one more variables, odbc execute will result wrong parameter binding if these variables are not the same type. For example, in SQL Server 7, establish a table 'TABLE1' with two columns: name:char(10), age:int, then try to insert some records as follow : <br> $conn = odbc_connect("SQL_7_DSN", "", "", SQL_CUR_DEFAULT) or die("Connect error\n"); $stmt = odbc_prepare($conn, "insert into TABLE1 (name,age) values(?,?)") or die("Prepare error\n"); #odbc_exec($conn, "insert into TABLE1 (name,age) values('abc',1)"); # odbc_exec works fine without error for ($i=0; $i <= 10; $i++) { odbc_execute($stmt, array("abc".$i, $i)); } odbc_close($conn); But, if change "insert into TABLE1 (name,age) values (?,?)" to "insert into TABLE1 (age,name) values (?,?)" and change odbc_execute($stmt, array("abc".$i, $i)) to odbc_execute($stmt, array($i, "abc".$i)), everything works fine in SQL Server. It seems odbc_execute did not bind right parameter to right variables. I suggest add some function like odbc_bindParameter(...) to set suitable type. BTW, take MS Access as DSN, which one in the above will not works :(