如何在xampp中使用php连接sql server

时间:2014-11-07 01:24:58

标签: php sql xampp

我的xampp安装在我的电脑和xampp php版本是5.5.15我想连接一个sql server(也安装在我的电脑sql server 2005)我下载php驱动程序并复制粘贴两个php文件“php_pdo_sqlsrv_55_ts .dll“和”php_sqlsrv_55_ts.dll“在”C:\ xampp \ php \ ext“文件夹和格式php.ini文件扩展名= php_pdo_sqlsrv_55_ts.dll和extension =”php_sqlsrv_55_ts.dll“我的问题是当我重新启动apache服务器(来自xampp控制面板)显示两个错误消息,一个是

httpd.exe错误“您的计算机缺少http.exe错误msvcp110.dll” 另一个是 “xampp错误php启动无法加载动态库无法找到特定模块” 除了这个错误,我试图使用代码连接sql server,但代码返回未定义的sqlsrv_connect函数错误

我的代码很简单

<?php
$serverName='SANTUNU23-PC\SQLEXPRESS';
$connectioninfo=array ('Database'=>'DB2662_cslBeseElec');
$myuser='santunu23';
$conn=sqlsrv_connect($serverName,$connectioninfo);
if($conn)
{
echo 'connection established';
}
else
{
echo 'can not make the connection'; 
die(print_r(sqlsrv_errors(),TRUE));
}
?>

现在该怎么办?任何建议我的系统是Windows 7 32位

1 个答案:

答案 0 :(得分:1)

您可以使用Google搜索&#34; msvcp110.dll&#34;,然后您就会知道此文件属于&#34; Microsoft Visual C ++ 2012 Redistributable Package&#34;。所以下载它,安装它,再试一次。