|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-06-14 18:11 UTC] braydenm at povs dot net
[2015-04-11 14:53 UTC] cmb@php.net
-Status: Open
+Status: Not a bug
-Assigned To:
+Assigned To: cmb
[2015-04-11 14:53 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 13:00:02 2025 UTC |
Description: ------------ since php 5.3.5 odbc_execute failed up to php 5.3.3 it works fine (with same conditions, same database and same odbc-drivers) Resource id #15 faultCode0faultStringWarning:odbc_execute(): SQL error: [unixODBC][Driver Manager]Driver does not support this function, SQL state IM001 in SQLDescribeParameter We use postgresql 9.0.3, psqlODBC 08.03.0200-12.1, UnixODBC 2.2.12-206.1 Test script: --------------- $sql_prep = odbc_prepare($db, 'update testtab set testfield = ? where id = 1'); echo $sql_prep; $rs = odbc_execute($sql_prep, array("dideldidum"));