当前位置:首页 > PHP教程 > php应用 > 列表

php连接与操作PostgreSQL数据库的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-04 17:42:26 浏览: 评论:0 

这篇文章主要介绍了php连接与操作PostgreSQL数据库的方法,以实例形式较为详细的分析了php连接PostgreSQL数据库以及进行读取与增加、修改、删除等技巧,具有一定的参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php连接与操作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. //} 
  12. //实例一[pg_fetch_row] 
  13. echo "<table border=1>"
  14. echo "<tr>"
  15. echo "<td>serial_no</td>"
  16. echo"<td>name</td>"
  17. echo"<td>birthday</td>"
  18. echo"</tr>"
  19. for($i=0;$i<pg_num_rows($result);$i++) 
  20. $row=@pg_fetch_row($resultor die("can't fetch row from table."); 
  21. $serial_no$row[0]; 
  22. $name$row[1]; 
  23. $birthday$row[2]; 
  24. echo"<tr>"
  25. echo"<td>$serial_no</td>"
  26. echo"<td>$name</td>"
  27. echo"<td>$birthday</td>"
  28. echo"</tr>"
  29. echo"</table>"
  30. //实例二[pg_fetch_array] 
  31. //echo "<table border=1>"; 
  32. //echo "<tr>"; 
  33. //echo "<td>serial_no</td>"; 
  34. //echo"<td>name</td>"; 
  35. //echo"<td>birthday</td>"; 
  36. //echo"</tr>"; 
  37. // 
  38. //for($i=0;$i<pg_num_rows($result);$i++) 
  39. //{ 
  40. // 
  41. //$row=@pg_fetch_array($result) or die("can't fetch row from table."); 
  42. //$serial_no= $row['serial_no']; 
  43. //$name= $row['name']; 
  44. //$birthday= $row['birthday']; 
  45. //echo"<tr>"; 
  46. //echo"<td>$serial_no</td>"; 
  47. //echo"<td>$name</td>"; 
  48. //echo"<td>$birthday</td>"; 
  49. //echo"</tr>"; 
  50. // 
  51. //} 
  52. //echo"</table>"; 
  53. //增加,删除,修改实例 
  54. //$newrow=array("serial_no"=>"1006","name"=>"peter","birthday"=>"1990-07-03","salary"=>"90","bonus"=>"80"); 
  55. //$reusult=@pg_insert($pg,"employes",$newrow) or die("can't insert data to table."); 
  56. //if($reusult) 
  57. //{ 
  58. //echo "rechords inserted sucessfully!"; 
  59. //} 
  60. // 
  61. pg_close($pg); 

希望本文所述对大家的PHP程序设计有所帮助。

Tags: php连接PostgreSQL

分享到: