|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-04-01 09:01 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 18 22:00:01 2025 UTC |
Hi, I have a simple test script that works on a system with pre-.net MDAC, but on my development system which runs a newer MDAC (installed with VS.NET), I get errors. The newest MDAC I am using is 3.520.7713.0 Is this supported? The example below uses ADODB, but the ADODB team suggetsed it should be reported here as its an ODBC issue. TestScript: $database="access"; $server="magazines"; $user=""; $password=""; include('adodb/adodb.inc.php'); $db = ADONewConnection($database); $db->debug = true; $db->Connect($server, $user, $password, $database); $rs = $db->Execute('select * from magazine'); print "<pre>"; print_r($rs->GetRows()); print "</pre>"; I have the code below for reference. Error Output: For odbc Connect(), access is not used. Place dsn in 1st parameter. Warning: SQL error: , SQL state 00000 in SQLConnect in C:\aaaa\Projects\PLIB\PLIB\members\adodb\drivers\adodb-odbc.inc.php on line 150 magazines: -------------------------------------------------------------------------------- (access): select * from magazine -------------------------------------------------------------------------------- Warning: odbc_exec(): supplied argument is not a valid ODBC-Link resource in C:\aaaa\Projects\PLIB\PLIB\members\adodb\drivers\adodb-odbc.inc.php on line 445 00000: Array ( )