Home > Article > Backend Development > PHP对postgreSQL数据库进行增删查改,该怎么处理
PHP对postgreSQL数据库进行增删查改
在myeclipse下,使用PHP对postgreSQL数据库进行增删查改的实例
------解决方案--------------------
$db = new PDO('pgsql:dbname=test host=localhost', $user, $pass); $db ->query('select ......'); $db ->exec('insert ......'); $db ->exec('update ......'); $db ->exec('delete ......'); <br><font color="#e78608">------解决方案--------------------</font><br>