<?php
try {
$dbh = new PDO('pgsql:host=localhost;port=5432;dbname=###;user=###;password=##');
echo "PDO connection object created";
}
catch(PDOException $e)
{
echo $e->getMessage();
}
?>
我收到错误消息无法加载驱动程序"
I get the error message "Could Not Load Driver"
试试这个:
在 php.ini 中通过删除;"取消注释以下内容
Uncomment the following in php.ini by removing the ";"
;extension=php_pgsql.dll
使用以下代码连接到 postgresql 数据库服务器:
Use the following code to connect to a postgresql database server:
pg_connect("host=localhost dbname=dbname user=username password=password")
or die("Can't connect to database".pg_last_error());
这篇关于如何让 php 与 postgresql 一起工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!