Re: new MySQLi connector won't work - SOLUTION
Yes The latest php/connector was compiled with msvcr71.dll(Microsoft VC Runtime library).(New mysql connector is the same.)
This dll isn't available on some platforms. Forexample the new installation of Windows2000.
The .NET framework 1.1 has msvcr71.dll.
But in microsoft's document ,there said when you compiled with it you should redistribute it, just like other redistributed library.
but the new mysql/mysqli didn't do that.
So you must copy it into the directory which could find in 'path' system varible.
so the real mysql/mysqli connector has four library:
libmysql.dll (included in mysql's connector package)
php_mysql.dll (included in mysql's connector package)
php_mysqli.dll (included in mysql's connector package)
msvcr71.dll (if you do not have it, find it by yourself.is this a bug?)
Subject
Written By
Posted
Re: new MySQLi connector won't work - SOLUTION
July 16, 2006 07:35AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.