|
1 | 1 | <!-- |
2 | | -$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.56 2002/04/0902:43:25 momjian Exp $ |
| 2 | +$Header: /cvsroot/pgsql/doc/src/sgml/Attic/plsql.sgml,v 2.57 2002/04/0903:08:25 momjian Exp $ |
3 | 3 | --> |
4 | 4 |
|
5 | 5 | <chapter id="plpgsql"> |
@@ -1449,8 +1449,8 @@ END LOOP; |
1449 | 1449 | to worry about that, since FOR loops automatically use a cursor |
1450 | 1450 | internally to avoid memory problems.) A more interesting usage is to |
1451 | 1451 | return a reference to a cursor that it has created, allowing the |
1452 | | - caller to read the rows. This providesone wayof returning multiple |
1453 | | -rows and columnsfroma function. |
| 1452 | + caller to read the rows. This providesa wayto return row sets |
| 1453 | + fromfunctions. |
1454 | 1454 | </para> |
1455 | 1455 |
|
1456 | 1456 | <sect2 id="plpgsql-cursor-declarations"> |
@@ -1691,10 +1691,10 @@ SELECT reffunc2(); |
1691 | 1691 |
|
1692 | 1692 | reffunc2 |
1693 | 1693 | -------------------- |
1694 | | - >unnamed cursor 1< |
| 1694 | + <unnamed cursor 1> |
1695 | 1695 | (1 row) |
1696 | 1696 |
|
1697 | | -FETCH ALL IN ">unnamed cursor 1<"; |
| 1697 | +FETCH ALL IN "<unnamed cursor 1>"; |
1698 | 1698 | COMMIT; |
1699 | 1699 | </programlisting> |
1700 | 1700 | </para> |
|