Re: cant use mysql_connect [message #179472 is a reply to message #179470] |
Wed, 31 October 2012 09:07 |
M. Strobel
Messages: 386 Registered: December 2011
Karma:
|
Senior Member |
|
|
Am 30.10.2012 22:58, schrieb Markus Grob:
> Markus Grob wrote:
>
>> But if I now try to connect to the database, pypmyadmin tells me, that
>> mysql can't be found: Cannot load mysql extension.
>
> I have read all the postings and now, I don't know, what I should do. I can rewrite
> my code, to use the mysqlnd locally, but I don't know, if normal webservers could use
> the new code. Will this normally be? How can I find it out?
>
Trying to sum up the driver thing, see
http://www.php.net/manual/en/mysqli.overview.php
* mysql is an old driver and old API, not recommended
* mysqli is the newer API, with the same design as mysql. Can use mysqlnd
* PDO is the unified and object oriented API. Can use mysqlnd, recommended
* mysqlnd is not an API, only a driver lib
So your programmer's choice is between mysqli and PDO. A webspace provider only
offering the mysql API should not exist anymore.
|
|
|