mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
810 B
54 lines
810 B
|
24 years ago
|
==================================================================
|
||
|
|
Name
|
||
|
|
|
||
|
|
dblink_connect -- Opens a persistent connection to a remote database
|
||
|
|
|
||
|
|
Synopsis
|
||
|
|
|
||
|
|
dblink_connect(text connstr)
|
||
|
|
|
||
|
|
Inputs
|
||
|
|
|
||
|
|
connstr
|
||
|
|
|
||
|
|
standard libpq format connection string,
|
||
|
|
e.g. "hostaddr=127.0.0.1 port=5432 dbname=mydb user=postgres password=mypasswd"
|
||
|
|
|
||
|
|
Outputs
|
||
|
|
|
||
|
|
Returns status = "OK"
|
||
|
|
|
||
|
|
Example usage
|
||
|
|
|
||
|
|
test=# select dblink_connect('dbname=template1');
|
||
|
|
dblink_connect
|
||
|
|
----------------
|
||
|
|
OK
|
||
|
|
(1 row)
|
||
|
|
|
||
|
|
==================================================================
|
||
|
|
Name
|
||
|
|
|
||
|
|
dblink_disconnect -- Closes the persistent connection to a remote database
|
||
|
|
|
||
|
|
Synopsis
|
||
|
|
|
||
|
|
dblink_disconnect()
|
||
|
|
|
||
|
|
Inputs
|
||
|
|
|
||
|
|
none
|
||
|
|
|
||
|
|
Outputs
|
||
|
|
|
||
|
|
Returns status = "OK"
|
||
|
|
|
||
|
|
Example usage
|
||
|
|
|
||
|
|
test=# select dblink_disconnect();
|
||
|
|
dblink_disconnect
|
||
|
|
-------------------
|
||
|
|
OK
|
||
|
|
(1 row)
|
||
|
|
|