I am trying to connect to MS SQL from php
I use:
but it seems that my server is missing PDO DRIVER, I only have:
and I got:
so how to get the driver for PHP 7.0.3 at the moment ?
I tried: Pecl install sqlsrv returns No releases available for package
and it teoritically got installed but no effects
I use:
PHP:
$conn = new PDO("dblib:Server=$serverName;Database=$base", "$user", "$pass");
but it seems that my server is missing PDO DRIVER, I only have:
PDO drivers | mysql, odbc, pgsql, sqlite |
and I got:
PHP:
Got error 'PHP message: PHP Fatal error: Uncaught PDOException: could not find driver in /var/www/vhosts...
so how to get the driver for PHP 7.0.3 at the moment ?
I tried: Pecl install sqlsrv returns No releases available for package
and it teoritically got installed but no effects