|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-08-12 20:39 UTC] kalowsky@php.net
[2002-08-15 15:14 UTC] jeff dot albert at ualberta dot ca
[2002-08-16 11:18 UTC] mlambert at kodak dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 05:00:01 2025 UTC |
Hello, I will limit this report to odbc_columns, although other odbc functions appear to be affected similarly: <?php $con = odbc_connect("dev", "", ""); $result = odbc_columns($con, "", "", "", "%"); ?> The above code will produce an SQL State 00000 error when connecting to an MS Access 2000 database through ODBC on a Windows 2000 Professional box. PHP is version 4.2.2, and the problem appears to occur in both Apache 1.3.* and 2.0.39. <?php $con = odbc_connect("dev", "", ""); $result = odbc_columns($con); ?> Calling odbc_columns without the extra parameters actually causes php.exe to crash altogether under the same environment.