我一直在使用Wamp服務器很長一段時間。它帶有MySQL。今天我不得不從mysql更改爲PostgreSQL。我試過安裝Postgres,下載並完成安裝。但是,當我試圖運行一個PHP程序,從表reteive一些數據,Postgres安裝問題
<?php
$link = pg_connect("host=192.168.2.43 dbname=DataFetcher user=postgres password=user");
echo "Connection Established";
?>
它說Call to undefined function pg_connect()
,這意味着未檢測的Postgres。
可能是什麼問題?
您的PHP版本是否支持Postgresql?檢查'phpinfo()'並看看http://www.php.net/manual/en/pgsql.installation.php。 –
我正在使用windows – user1371896
你可以使用它的命令行工具'psql'連接到Postgres嗎? –