ID: 13154 Updated by: kalowsky Reported By: [EMAIL PROTECTED] Old Status: Open Status: Assigned Bug Type: ODBC related Operating System: Solaris 8 PHP Version: 4.0.6 Old Assigned To: Assigned To: ahill New Comment:
Assigning this to Ahill as he knows the OpenLink software best. Previous Comments: ------------------------------------------------------------------------ [2001-09-05 14:57:19] [EMAIL PROTECTED] No queries can be made with PHP 4 and Openlink ODBC to access OpenIngres. Test program: <? echo " Teste de ODBC<P>" ; $odbc = odbc_connect("Desenv" , "notes", "notes", SQL_CUR_USE_IF_NEEDED ); echo " ODBC_CONNECT return code: $odbc "; $query = "select matrica from srhtb002"; $queryprep = odbc_prepare ($odbc, $query); // This produces the error. $result = odbc_execute($queryprep ); print "ok. result = $result"; $nextrow = odbc_fetch_row($result, 1); if (! $nextrow ) { print "Nco achou nada...<br>"; } else { print odbc_result($result , 1 ); print "<br>"; print odbc_result($result , 2 ); } ?> The configure line is: ./configure --enable-track-vars --with-yp --with-apxs --with-oci8 --with-iodbc=/software/openlink/odbcsdk ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=13154&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]