Query: dblink_close
OS: centos
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DBLINK_CLOSE(3) PostgreSQL 9.2.7 Documentation DBLINK_CLOSE(3)NAMEdblink_close - closes a cursor in a remote databaseSYNOPSISdblink_close(text cursorname [, bool fail_on_error]) returns text dblink_close(text connname, text cursorname [, bool fail_on_error]) returns textDESCRIPTIONdblink_close closes a cursor previously opened with dblink_open.ARGUMENTSconname Name of the connection to use; omit this parameter to use the unnamed connection. cursorname The name of the cursor to close. fail_on_error If true (the default when omitted) then an error thrown on the remote side of the connection causes an error to also be thrown locally. If false, the remote error is locally reported as a NOTICE, and the function's return value is set to ERROR.RETURN VALUEReturns status, either OK or ERROR.NOTESIf dblink_open started an explicit transaction block, and this is the last remaining open cursor in this connection, dblink_close will issue the matching COMMIT.EXAMPLESSELECT dblink_connect('dbname=postgres'); dblink_connect ---------------- OK (1 row) SELECT dblink_open('foo', 'select proname, prosrc from pg_proc'); dblink_open ------------- OK (1 row) SELECT dblink_close('foo'); dblink_close -------------- OK (1 row) PostgreSQL 9.2.7 2014-02-17 DBLINK_CLOSE(3)
Related Man Pages |
---|
close(7) - centos |
rollback_to_savepoint(7) - centos |
declare(7) - redhat |
dblink(3) - centos |
dblink_fetch(3) - centos |
Similar Topics in the Unix Linux Community |
---|
errpt |
seeking help in text processing |
How to extract block from a file? |
Select row from file and text |
Sum value in text file |