|
|
|
อยากใช้ PHP กับ PostgreSQL แต่ไม่รู้จะเริ่มยังไงครับ บทความก็ไม่มีครับ |
|
|
|
|
|
|
|
ไม่ต่างอะไรกับ MySQL หรอกครับ
Code (PHP)
<?php
$conn_string = "host=localhost port=5432 dbname=mydatabase user=postgres password=postgres";
$dbconn = pg_connect($conn_string);
$sql = "SELECT * FROM layer.table_name";
$query_result = pg_query($dbconn,$sql);
$num = pg_numrows($query_result);
$i = 0;
while ($i < $num) {
echo pg_result($query_result,$i,"column1");
echo pg_result($query_result,$i,"column2");
echo pg_result($query_result,$i,"column3");
$i++;
}
pg_close($dbconn);
?>
|
|
|
|
|
Date :
2013-10-12 15:25:51 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|