ID: 13154
User updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
Old Status: Closed
Status: Open
Bug Type: ODBC related
Operating System: Solaris 8
PHP Version: 4.0.6
Old Assigned To: ahill
Assigned To:
Previous Comments:
------------------------------------------------------------------------
[2001-12-28 06:10:42] [EMAIL PROTECTED]
No feedback. Closing.
------------------------------------------------------------------------
[2001-12-07 13:11:40] [EMAIL PROTECTED]
We've not had any problems with your configuration - are you getting an error message?
Best regards,
Andrew Hill
------------------------------------------------------------------------
[2001-12-07 12:25:32] [EMAIL PROTECTED]
Assigning this to Ahill as he knows the OpenLink software best.
------------------------------------------------------------------------
[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]