Magento访问位于mssql server 2008中的数据库

时间:2016-02-15 06:28:20

标签: magento

我需要访问mssql server 2008中的另一个数据库中的表。 我需要使用magento模块访问此数据库。只是为了测试我是否可以连接到数据库,我在test.php文件中尝试了下面的代码。

$myServer = "localhost";
$myUser = "your_name";
$myPass = "your_password";
$myDB = "examples";

//connection to the database
$dbhandle = mssql_connect($myServer, $myUser, $myPass)
  or die("Couldn't connect to SQL Server on $myServer");

但是我得到了错误;  致命错误:调用未定义的函数mssql_connect()

任何人都可以帮我解决这个问题。

非常感谢你。

0 个答案:

没有答案