网站地图    收藏   

主页 > php专栏 > php应用 >

PostgreSQL连接数据的方法和操作实例 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] $pg=@pg_connect(host=localhostuser=postgrespassword=sadbname=employes)ordie(can#39;tconnecttodatabase.);$query=select*fromem......

PostgreSQL连接数据的方法和操作实例

  1. $pg=@pg_connect("host=localhost user=postgres password=sa dbname=employes"
  2. or die("can't connect to database."); 
  3. $query="select * from employes order by serial_no"
  4. //$query="insert into employes values(10008,'susan','1985-09-04','80','50')"; 
  5. $result=@pg_query($pg,$queryor die("can't run query to table."); 
  6. //echo pg_num_rows($result); //输出多少条记录被查询 
  7. //if($result) 
  8. //{ 
  9. //echo "recrods inserted sucessfully!"; 
  10. //echo pg_affected_rows($result);//输出多少条记录被插入 
  11. /

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论