More cleanups of cursor text.
authorBruce Momjian
Tue, 9 Apr 2002 03:08:25 +0000 (03:08 +0000)
committerBruce Momjian
Tue, 9 Apr 2002 03:08:25 +0000 (03:08 +0000)
doc/src/sgml/plsql.sgml

index a952ebbb1f4e7ef15a11f0af22a0abe7d05e30e7..aa643a26b24fbfd4e97b685c9f54b4807fa1a87e 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -1449,8 +1449,8 @@ END LOOP;
     to worry about that, since FOR loops automatically use a cursor
     internally to avoid memory problems.) A more interesting usage is to
     return a reference to a cursor that it has created, allowing the
-    caller to read the rows. This provides one way of returning multiple
-    rows and columns from a function.
+    caller to read the rows. This provides a way to return row sets
+    from functions.
    
    
    
@@ -1691,10 +1691,10 @@ SELECT reffunc2();
   
         reffunc2      
   --------------------
-   >unnamed cursor 1<
+   <unnamed cursor 1>
   (1 row)
 
-FETCH ALL IN ">unnamed cursor 1<";
+FETCH ALL IN "<unnamed cursor 1>";
 COMMIT;