diff --git a/doc/src/sgml/dblink.sgml b/doc/src/sgml/dblink.sgml index 72ca765be73..f70bf0d19d4 100644 --- a/doc/src/sgml/dblink.sgml +++ b/doc/src/sgml/dblink.sgml @@ -64,7 +64,7 @@ dblink_connect(text connname, text connstr) returns text - conname + connname The name to use for this connection; if omitted, an unnamed @@ -264,7 +264,7 @@ dblink_disconnect(text connname) returns text - conname + connname The name of a named connection to be closed. @@ -343,7 +343,7 @@ dblink(text sql [, bool fail_on_error]) returns setof record - conname + connname Name of the connection to use; omit this parameter to use the @@ -557,7 +557,7 @@ dblink_exec(text sql [, bool fail_on_error]) returns text - conname + connname Name of the connection to use; omit this parameter to use the @@ -682,7 +682,7 @@ dblink_open(text connname, text cursorname, text sql [, bool fail_on_error]) ret - conname + connname Name of the connection to use; omit this parameter to use the @@ -801,7 +801,7 @@ dblink_fetch(text connname, text cursorname, int howmany [, bool fail_on_error]) - conname + connname Name of the connection to use; omit this parameter to use the @@ -950,7 +950,7 @@ dblink_close(text connname, text cursorname [, bool fail_on_error]) returns text - conname + connname Name of the connection to use; omit this parameter to use the @@ -1097,7 +1097,7 @@ dblink_error_message(text connname) returns text - conname + connname Name of the connection to use. @@ -1166,7 +1166,7 @@ dblink_send_query(text connname, text sql) returns int - conname + connname Name of the connection to use. @@ -1233,7 +1233,7 @@ dblink_is_busy(text connname) returns int - conname + connname Name of the connection to check. @@ -1298,7 +1298,7 @@ dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, ex - conname + connname The name of a named connection to get notifications on. @@ -1373,7 +1373,7 @@ dblink_get_result(text connname [, bool fail_on_error]) returns setof record - conname + connname Name of the connection to use. @@ -1536,7 +1536,7 @@ dblink_cancel_query(text connname) returns text - conname + connname Name of the connection to use.