所有的資料表名稱。
<?php
//查出資料庫中所有的資料表
$sql="SELECT table_name
FROM information_schema.tables
WHERE table_schema='public'
AND table_type='BASE TABLE';";
//連接字串
$conn_string= "host=192.168.1.30 port=5432 dbname=TESTDB user=postgres password=mydbpw";
//開啟連接
$connection= pg_connect($conn_string);
//執行SQL並傳回結果
$myresult = pg_exec($connection, $sql);
//確認有回傳結果
if (isset($myresult))
{
//輸出所有結果
for ($lt=0;$lt<pg_numrows($myresult);$lt++)
{
echo pg_result($myresult,$lt,'table_name').'<br>';
}
}
?>
沒有留言:
張貼留言