From: Bruce Momjian Date: Thu, 30 Dec 1999 22:58:10 +0000 (+0000) Subject: Clearify DECLARE syntax by saying cursorname, not just cursor. X-Git-Tag: REL7_0~958 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b16bd185468a049a112415edb305e197b2051b2f;p=postgresql Clearify DECLARE syntax by saying cursorname, not just cursor. --- diff --git a/doc/src/sgml/ref/declare.sgml b/doc/src/sgml/ref/declare.sgml index 26cd9da61b..c3c8b52680 100644 --- a/doc/src/sgml/ref/declare.sgml +++ b/doc/src/sgml/ref/declare.sgml @@ -1,5 +1,5 @@ @@ -23,7 +23,7 @@ Postgres documentation 1999-07-20 -DECLARE cursor [ BINARY ] [ INSENSITIVE ] [ SCROLL ] +DECLARE cursorname [ BINARY ] [ INSENSITIVE ] [ SCROLL ] CURSOR FOR query [ FOR { READ ONLY | UPDATE [ OF column [, ...] ] ] @@ -37,7 +37,7 @@ DECLARE cursor [ BINARY ] [ INSENSI - cursor + cursorname The name of the cursor to be used in subsequent FETCH operations.. @@ -154,11 +154,11 @@ SELECT NOTICE -BlankPortalAssignName: portal "cursor" already exists +BlankPortalAssignName: portal "cursorname" already exists - This error occurs if cursor is already declared. + This error occurs if cursorname is already declared.