|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-10-10 07:49 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 04:00:01 2025 UTC |
Description: ------------ Same code is not working on windows 20003. Reproduce code: --------------- $dbfile='..\db\test.mdb'; $conn = new COM("ADODB.Connection") or die ("Cannot start ADO"); $cstr = "DRIVER={Microsoft Access Driver(*.mdb)}; DBQ=$dbfile;"; $rc = $conn->Open( $cstr ); This code was working on windows 2000, but it's not working on windows 2003. If "die" is in the connection string, it will not anything else a error message: "Call to a member function on a non-object in " Expected result: ---------------- to open connection.