如何让 php 与 postgresql 一起工作? [英] How do I enable php to work with postgresql?

查看:51
本文介绍了如何让 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();
}

?>

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

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 一起工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆