如何将 PHP 连接到 H2 数据库,到目前为止,我尝试使用
$ java -cp h2-1.3.172.jar org.h2.tools.Server
Web Console server running at http://127.0.1.1:8082 (others can connect)
TCP server running at tcp://127.0.1.1:9092 (only local connections)
PG server running at pg://127.0.1.1:5435 (only local connections)
在ubuntu下安装pg-sql模块
sudo apt-get install php5-pgsql
然后在我的php中我有以下
$conn = pg_connect("host=127.0.1.1 port=5435 dbname=/home/frank/testdb user=sa password=");
还尝试了不同的端口:5435、9092,不同的主机:localhost、127.0.0.1 但没有,返回的连接为空或脚本挂起。
有什么建议吗?