Welcome Guest, Not a member yet? Register   Sign In
How to connect to sql server database
#2

[eluser]Mohammed Zayan[/eluser]
I change the php.ini file
Code:
extension=php_sqlsrv_54_ts.dll
and restart xampp
and try to connect by this code
Code:
$serverName = '192.123.0.1';
$connectionInfo = array( "Database"=>"Middle", "UID"=>"sasa", "PWD"=>"******");
$conn = sqlsrv_connect( $serverName, $connectionInfo);

if( $conn ) {
     echo "Connection established.<br />";
}else{
     echo "Connection could not be established.<br />";
     die( print_r( sqlsrv_errors(), true));
}
I have this
Code:
Connection could not be established.<br />Array
(
    [0] => Array
        (
            [0] => IMSSP
            [SQLSTATE] => IMSSP
            [1] => -49
            [code] => -49
            [2] => This extension requires the Microsoft SQL Server 2012 Native Client. Access the following URL to download the Microsoft SQL Server 2012 Native Client ODBC driver for x86: http://go.microsoft.com/fwlink/?LinkId=163712
            [message] => This extension requires the Microsoft SQL Server 2012 Native Client. Access the following URL to download the Microsoft SQL Server 2012 Native Client ODBC driver for x86: http://go.microsoft.com/fwlink/?LinkId=163712
        )

    [1] => Array
        (
            [0] => IM002
            [SQLSTATE] => IM002
            [1] => 0
            [code] => 0
            [2] => [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
            [message] => [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
        )

)


Messages In This Thread
How to connect to sql server database - by El Forum - 01-23-2013, 01:55 AM
How to connect to sql server database - by El Forum - 01-23-2013, 02:37 AM
How to connect to sql server database - by El Forum - 01-23-2013, 05:09 AM
How to connect to sql server database - by El Forum - 01-23-2013, 05:32 AM
How to connect to sql server database - by El Forum - 01-25-2013, 02:14 PM
How to connect to sql server database - by El Forum - 01-25-2013, 02:55 PM
How to connect to sql server database - by El Forum - 01-26-2013, 12:51 AM
How to connect to sql server database - by El Forum - 10-10-2013, 07:39 PM



Theme © iAndrew 2016 - Forum software by © MyBB