如何使php与postgresql一起使用?
2022-08-30 10:19:45
<?php
try {
$dbh = new PDO('pgsql:host=localhost;port=5432;dbname=###;user=###;password=##');
echo "PDO connection object created";
}
catch(PDOException $e)
{
echo $e->getMessage();
}
?>
我收到错误消息“无法加载驱动程序”