如何通过PHP连接普及数据库

时间:2014-04-07 16:24:36

标签: php pervasive-sql

我需要知道如何通过php连接普及数据库。

据我所知,我必须使用 ODBC 。我在 Windows 7 系统上配置了它,我在普及服务器上创建了表。

这是我的代码,但它不起作用:

$connect_string = "DRIVER={Pervasive ODBC Client Interface}; SERVERNAME=localhost; SERVERDSN=demodata;";
$conn = odbc_connect($connect_string, 'root', 'root');

2 个答案:

答案 0 :(得分:1)

您可能已经安装了ODBC驱动程序;我通过从http://www.pervasive.com/database/Home/Products/PSQLv12.aspx安装Pervasive Client获得了最新版本(当前版本为12)。

然后根据32位或64位使用以下连接字符串:

32位:

$connect=odbc_connect("Driver={Pervasive ODBC Client Interface};ServerName=localhost;ServerDSN=DSNname;",
    "Username", "Password", SQL_CUR_USE_ODBC); 

64位:

$connect=odbc_connect("Driver={Pervasive ODBC Interface};ServerName=localhost;ServerDSN=DSNname;",
    "Username", "Password", SQL_CUR_USE_ODBC); 

(您可以在Windows上使用ODBC数据源管理员检查这些字符串,在其他操作系统上使用等效项。)

答案 1 :(得分:0)

使用此连接字符串:

$connect=odbc_connect("Driver={Pervasive ODBC Engine Interface};ServerName=localhost;ServerDSN=DSNname;",
    "Username", "Password", SQL_CUR_USE_ODBC);