les cuento estoy intentando hacer una conexón a Sql Server 2008 tengo php 5.4 y ya descargue las extensiones del SQL todo bn hasta hay el problema es cuando me conecto que me retorna el siguiente error
string(276) "SQLSTATE[IMSSP]: This extension requires the Microsoft SQL Server 2012 Native Client ODBC Driver to communicate with SQL Server. Access the following URL to download the Microsoft SQL Server 2012 Native Client ODBC driver for x86: http://go.microsoft.com/fwlink/?LinkId=163712"
y mi codigo es
Código PHP:
try {
$conn = new PDO("sqlsrv:Server=CESAR-PC;Database=Prueba","","");
} catch (Exception $ex) {
//echo "Error PDO "
//echo '<pre>';
var_dump($ex->getMessage());
//echo '</pre>';
}
Gracias ...