diff options
| author | Bruce Momjian <bruce@momjian.us> | 2003-02-19 03:59:02 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2003-02-19 03:59:02 +0000 |
| commit | 81f6db4803082f89b86a2d4701bf6237e6988db5 (patch) | |
| tree | df7a86545a3b2237ec370f797ba87e95adb278e1 /doc/src/sgml/protocol.sgml | |
| parent | 1eb9fd49d11a2e91e0e9eb465c815958c376937d (diff) | |
| download | postgresql-81f6db4803082f89b86a2d4701bf6237e6988db5.tar.gz | |
Allow PQcmdTuples to return row counts for MOVE and FETCH.
Neil Conway
Diffstat (limited to 'doc/src/sgml/protocol.sgml')
| -rw-r--r-- | doc/src/sgml/protocol.sgml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/src/sgml/protocol.sgml b/doc/src/sgml/protocol.sgml index 06901a8e33..f650738728 100644 --- a/doc/src/sgml/protocol.sgml +++ b/doc/src/sgml/protocol.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.24 2002/03/22 19:20:21 petere Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/protocol.sgml,v 1.25 2003/02/19 03:59:02 momjian Exp $ --> <chapter id="protocol"> <title>Frontend/Backend Protocol</title> @@ -1335,6 +1335,20 @@ CompletedResponse (B) <literal>UPDATE <Replaceable>rows</Replaceable></literal> where <Replaceable>rows</Replaceable> is the number of rows updated. </Para> + + <para> + For a <command>MOVE</command> command, the tag is + <literal>MOVE <replaceable>rows</replaceable></literal> where + <replaceable>rows</replaceable> is the number of rows the + cursor's position has been changed by. + </para> + + <para> + For a <command>FETCH</command> command, the tag is + <literal>FETCH <replaceable>rows</replaceable></literal> where + <replaceable>rows</replaceable> is the number of rows that + have been retrieved from the cursor. + </para> </ListItem> </VarListEntry> </VariableList> |
