pg_connect

pg_connect -- 打開一個 PostgreSQL 連線

基本介紹

  • 外文名:pg_connect
  • 性質:科學
  • 類別:計算機
  • 屬於:編程
pg_connect,說明,使用 pg_connect(),

pg_connect

(PHP 3, PHP 4 )

說明

resource pg_connect ( string connection_string)
pg_connect() 返回其它 PostgreSQL 函式所需要的資源。
pg_connect() 打開一個由 connection_string 所指定的 PostgreSQL 資料庫的連線。如果成功則返回連線資源,如果不能連線則返回 FALSEconnection_string 應該是用引號引起來的字元串。

使用 pg_connect()

<?php
$dbconn = pg_connect("dbname=mary");
//connect to a database named "mary"
$dbconn2 = pg_connect("host=localhost port=5432 dbname=mary");
// connect to a database named "mary" on "localhost" at port "5432"
$dbconn3 = pg_connect("host=sheep port=5432 dbname=mary user=lamb password=foo");
//connect to a database named "mary" on the host "sheep" with a username and password
$conn_string = "host=sheep port=5432 dbname=test user=lamb password=bar";
$dbconn4 = pg_connect($conn_string);
//connect to a database named "test" on the host "sheep" with a username and password
?>
connection_string 所包括的參數有 hostporttty, optionsdbname, userpassword
如果用同樣的 connection_string 再次調用 pg_connect(),不會建立新連線,而是返回前面已經打開的連線資源。如果使用不同的連線字元串,則可以和同一個資料庫建立多個連線。
舊的多參數語法 $conn = pg_connect("host", "port", "options", "tty", "dbname") 已經不提倡使用。

相關詞條

熱門詞條

聯絡我們