我想测试连接到xampp的postgreSQL但是当我想尝试它时只出现一个错误: 警告:pg_query():查询失败:错误:关系"测试"不存在第1行:第3行的E:\ xampp \ htdocs \ test \ index.php中的SELECT * FROM test ^ 我使用了以下代码:
<?php
$connection=pg_connect("host=localhost port=5432 dbname=test user=postgres
password=postgres")
or die("Can't connect");
$result=pg_query($connection, "SELECT * FROM test");
echo $result;