背景:
最近一个项目,由于新学了php练手就接了,而没想到,给的数据库是sql server,而且我的系统是ubuntu,不得已找了台电脑连接。
环境介绍:
操作系统:windows xp
环境:wampserver2.2e-php5.3.13-httpd2.2.22-mysql5.5.24-32b
额外需要下载:SQL Server Driver for PHP 2.0版本
sqlncli.msi
操作:
已经配置成功wamp(记得要装vcredist_x86);
关于:SQL Server Driver for PHP 2.0的配置:将解压而得的文件复制到wamp目录下的\bin\php\php5.3.13\ext中
配置php.ini:(这步应该是要看版本,版本不对的话重启wamp时候会有提示)
extension=php_sqlsrv_53_ts_vc9.dll
extension=php_pdo_sqlsrv_53_ts_vc9.dll
之后重启wamp
之后应该能看到:
测试:
header(“content-type:text/html; charset=utf-8″);
$serverName = “(localhost)”;
$uid =
“用户名”;
$pwd = “密码”;
$connectionInfo = array(“UID”=>$uid,”PWD”=>$pwd,”Database”=>”dbo.test”);
$conn = sqlsrv_connect(
$serverName,$connectionInfo);
if( $conn ==
false)
{
echo “连接失败!”;
die(
print_r( sqlsrv_errors(), true));
}
else
echo ‘success‘;
?>
参考博文(各取一部分):
http://www.sodone.com/php-connection-sql-server/
http://blog.sina.com.cn/s/blog_7412ed3a0100qiar.html