如何让 php 与 postgresql 一起工作?

2021-12-26 00:00:00 postgresql windows php pdo
<?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());

相关文章