致命错误:调用未定义的函数 sqlsrv_connect()
2022-08-30 13:11:23
我遇到了很多关于同一主题问题的帖子,但是我仍然无法解决它,所以我问。我正在尝试在我的php脚本中连接到sql。我的连接字符串是:
/* Specify the server and connection string attributes. */
$serverName = "xxx-PC\SQLExpress";
$connectionOptions = array("Database"=>"Salesforce");
$conn = sqlsrv_connect($serverName, $connectionOptions);
if($conn === false)
{
die(print_r(sqlsrv_errors(), true));
}
我已经在位于 wamp 文件夹下的文件中安装并包含以下内容:php.ini
C:\wamp\bin\php\php5.4.16
extension=c:/wamp/bin/php/php5.4.16/ext/php_sqlsrv_53_ts.dll
我的运行良好,服务和也是如此。我能够成功执行php.exe。但是,我无法连接到数据库所在的位置。请帮忙!wampserver
wampapache
wampsqld
SQL Server 2008 R2
编辑1:wamp服务器正在运行wampmysql服务,而我正在尝试连接到.这可能是原因吗?我应该使用而不是?任何指针?SQL Server 2008 R2
MySQL
SQL
编辑2:当我运行时,我根本没有看到部分,尽管我已经添加到位于wamp服务器的bin文件夹中的文件。sqlsrv
phpinfo()
extension=php_sqlsrv_54_ts.dll
php.ini