]> granicus.if.org Git - postgresql/commitdiff
Manual page fixes.
authorBruce Momjian <bruce@momjian.us>
Mon, 23 Mar 1998 15:09:43 +0000 (15:09 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 23 Mar 1998 15:09:43 +0000 (15:09 +0000)
src/man/abort.l
src/man/begin.l
src/man/commit.l
src/man/declare.l
src/man/fetch.l
src/man/large_objects.3
src/man/libpq.3
src/man/lock.l
src/man/move.l
src/man/rollback.l

index b7a6f09b75f8bfd9badcf4ff31977c70ee97ab29..7f471ddf396374684dcb5793196391a52c6f56ef 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/abort.l,v 1.3 1998/01/11 22:17:01 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/abort.l,v 1.4 1998/03/23 15:09:22 momjian Exp $
 .TH ABORT SQL 01/23/93 PostgreSQL PostgreSQL
 .\" XXX This .XA has to go after the .TH so that the index page number goes
 .\"    in the right place...
@@ -19,5 +19,5 @@ is functionally equivalent to
 .IR "rollback".
 .SH "SEE ALSO"
 begin(l),
-end(l),
+commit(l),
 rollback(l).
index fc5fd809f0a958d57b34cce7463ae39391afe034..04fd5737308f60bd4db9d100b154e001667e118f 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.3 1998/01/11 22:17:05 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/begin.l,v 1.4 1998/03/23 15:09:23 momjian Exp $
 .TH BEGIN SQL 11/05/95 PostgreSQL PostgreSQL
 .SH NAME
 begin - begins a transaction
@@ -17,4 +17,4 @@ them are done.  Transactions have the standard ACID (atomic,
 consistent, isolatable, and durable) property.
 .SH "SEE ALSO"
 abort(l),
-end(l).
+commit(l).
index 2e52408ed89545d948b983fb98c14db8e12c78e5..7d4889e8b8c4f5a8b5a93b5ecc976b09195e1d7a 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.3 1998/01/11 22:17:10 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/commit.l,v 1.4 1998/03/23 15:09:25 momjian Exp $
 .TH COMMIT SQL 01/23/93 PostgreSQL PostgreSQL
 .SH NAME
 commit - commit the current transaction 
@@ -19,5 +19,5 @@ command
 .SH "SEE ALSO"
 abort(l),
 begin(l),
-end(l),
+commit(l),
 rollback(l).
index 37a3e11a253dddf64661cb368c43d5a56bf999a3..5841e35a2ac7bf4f1fc5671c6c3ec1070804979b 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/declare.l,v 1.3 1998/01/22 23:05:18 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/declare.l,v 1.4 1998/03/23 15:09:26 momjian Exp $
 .TH FETCH SQL 01/23/93 PostgreSQL PostgreSQL
 .SH NAME
 declare - declare a cursor
@@ -35,5 +35,5 @@ For an example, see the fetch(l) manual page.
 .SH "SEE ALSO"
 fetch(l),
 begin(l),
-end(l),
+commit(l),
 select(l).
index 3d29278570b575a0e103c285f9318e40020531db..906047eb96ace3bd301de99e451a190668346235 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/fetch.l,v 1.5 1998/01/11 22:17:35 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/fetch.l,v 1.6 1998/03/23 15:09:29 momjian Exp $
 .TH FETCH SQL 01/23/93 PostgreSQL PostgreSQL
 .SH NAME
 fetch - fetch instance(s) from a cursor
@@ -34,33 +34,33 @@ commands to update data.
 Cursors may only be used inside of transaction blocks marked by 
 .IR begin (l)
 and
-.IR end (l)
+.IR commit (l)
 because the data that they store spans multiple user queries.
 .SH EXAMPLE
 .nf
 --
 --set up and use a cursor 
 --
-begin 
-   declare mycursor cursor for 
-   select * from pg-user;
+begin work;
+declare mycursor cursor for 
+    select * from pg-user;
 --
 --Fetch all the instances available in the cursor FOO
 --
-  fetch all in FOO;
+fetch all in FOO;
 --
 --Fetch 5 instances backward in the cursor FOO
 --
-  fetch backward 5 in FOO;
+fetch backward 5 in FOO;
 --
 --close
 --
-  close foo;
-end;
+close foo;
+commit;
 .fi
 .SH "SEE ALSO"
 begin(l),
-end(l),
+commit(l),
 close(l),
 move(l),
 select(l).
index a7dfc38a8d8bb5023aceea68f6a617862c6e4fac..8a1920a19756e92c3dd46042a1fc01f5d3f56018 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.5 1998/01/11 22:17:41 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.6 1998/03/23 15:09:29 momjian Exp $
 .TH "LARGE OBJECTS" INTRO 03/18/94 PostgreSQL PostgreSQL
 .SH DESCRIPTION
 .PP
@@ -259,7 +259,7 @@ library.
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.5 1998/01/11 22:17:41 momjian Exp $
+ *    $Header: /cvsroot/pgsql/src/man/Attic/large_objects.3,v 1.6 1998/03/23 15:09:29 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -458,7 +458,7 @@ main(int argc, char **argv)
        exit_nicely(conn);
     }
        
-    res = PQexec(conn, "begin");
+    res = PQexec(conn, "begin work;");
     PQclear(res);
     printf("importing file \\"%s\\" ...\\n", in_filename);
 /*  lobjOid = importFile(conn, in_filename); */
@@ -477,7 +477,7 @@ main(int argc, char **argv)
 /*    exportFile(conn, lobjOid, out_filename); */
     lo_export(conn, lobjOid,out_filename);
 
-    res = PQexec(conn, "end");
+    res = PQexec(conn, "commit;");
     PQclear(res);
     PQfinish(conn);
     exit(0);
index 10006001eb9764dd53d0f2b068f9b43b8deb5d03..ac1a03f7aefffeb53f10a7a784cfb43d668db3e0 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.12 1998/01/26 01:42:47 scrappy Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/libpq.3,v 1.13 1998/03/23 15:09:30 momjian Exp $
 .TH LIBPQ INTRO 03/12/94 PostgreSQL PostgreSQL
 .SH DESCRIPTION
 Libpq is the programmer's interface to Postgres.  Libpq is a set of
@@ -735,8 +735,8 @@ main()
   res = PQexec(conn, "CLOSE mycursor");
   PQclear(res);
 
-  /* end the transaction */
-  res = PQexec(conn, "END");
+  /* commit the transaction */
+  res = PQexec(conn, "COMMIT");
   PQclear(res);
 
   /* close the connection to the database and cleanup */
@@ -985,8 +985,8 @@ main()
   res = PQexec(conn, "CLOSE mycursor");
   PQclear(res);
 
-  /* end the transaction */
-  res = PQexec(conn, "END");
+  /* commit the transaction */
+  res = PQexec(conn, "COMMIT");
   PQclear(res);
 
   /* close the connection to the database and cleanup */
index b0b053377ba085e2e679c829da884696b1bc37fa..440e491b8637718ed433e03113d0b0f2790cb40f 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/lock.l,v 1.4 1998/03/18 15:48:57 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/lock.l,v 1.5 1998/03/23 15:09:34 momjian Exp $
 .TH FETCH SQL 01/23/93 PostgreSQL PostgreSQL
 .SH NAME
 lock - exclusive lock a table
@@ -34,8 +34,8 @@ begin work;
 lock table mytable;
 select * from mytable;
 update mytable set (x = 100);
-end work;
+commit;
 .SH "SEE ALSO"
 begin(l),
-end(l),
+commit(l),
 select(l).
index 0617cd5bb19bc60d90c521f5e96900fe748f2724..ab00825455686e7540f94e8173642a48611c1e75 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/move.l,v 1.2 1998/01/11 22:17:44 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/move.l,v 1.3 1998/03/23 15:09:41 momjian Exp $
 .TH MOVE SQL 01/23/93 PostgreSQL PostgreSQL
 .SH NAME
 move - move cursor position
@@ -19,26 +19,26 @@ command: it fetches instances, but put them nowhere.
 --
 --set up and use a cursor 
 --
-begin 
-   declare mycursor cursor for 
-   select * from pg-user;
+begin work;
+declare mycursor cursor for 
+    select * from pg-user;
 --
 --Move for 5 instances in the cursor FOO
 --
-  move 5 in FOO;
+move 5 in FOO;
 --
 --Fetch 6th instance in the cursor FOO
 --
-  fetch 1 in FOO;
+fetch 1 in FOO;
 --
 --close
 --
-  close foo;
-end;
+close foo;
+commit;
 .fi
 .SH "SEE ALSO"
 begin(l),
-end(l),
+commit(l),
 close(l),
 fetch(l),
 select(l).
index 4f44940b9ae4fea195b1784f1ed2a6aba960bb9a..e9c0d350b846e2b2e2b8e43f8eedf910cf01d1f1 100644 (file)
@@ -1,6 +1,6 @@
 .\" This is -*-nroff-*-
 .\" XXX standard disclaimer belongs here....
-.\" $Header: /cvsroot/pgsql/src/man/Attic/rollback.l,v 1.3 1998/01/11 22:17:57 momjian Exp $
+.\" $Header: /cvsroot/pgsql/src/man/Attic/rollback.l,v 1.4 1998/03/23 15:09:43 momjian Exp $
 .TH ROLLBACK SQL 01/20/96 PostgreSQL PostgreSQL
 .\" XXX This .XA has to go after the .TH so that the index page number goes
 .\"    in the right place...
@@ -21,4 +21,4 @@ command.
 .SH "SEE ALSO"
 abort(l),
 begin(l),
-end(l).
+commit(l).