如何启用php与postgresql一起使用?

<?php

try {

$dbh = new PDO('pgsql:host=localhost;port=5432;dbname=###;user=###;password=##');

echo "PDO connection object created";

}

catch(PDOException $e)

{

echo $e->getMessage();

}

?>

我收到错误消息“无法加载驱动程序”

回答:

尝试这个:

通过删除“;”在php.ini中取消注释以下内容:

;extension=php_pgsql.dll

使用以下代码连接到PostgreSQL数据库服务器:

pg_connect("host=localhost dbname=dbname user=username password=password")

or die("Can't connect to database".pg_last_error());

以上是 如何启用php与postgresql一起使用? 的全部内容, 来源链接: utcz.com/qa/425227.html

回到顶部