From e1635b44025ca4cff059904ce01a6a325f2c5a66 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 26 Aug 2001 17:04:02 +0000 Subject: [PATCH] Back out "Remove outdated documentation section of ecpg." for Michael. --- doc/src/sgml/ecpg.sgml | 49 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 48 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 15e4fc9507..ba9bd4d0e6 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -1,5 +1,5 @@ @@ -805,6 +805,53 @@ exec sql disconnect [connection target]; + + + Open cursor statement + + + An open cursor statement looks like: + +exec sql open cursor; + + and is ignore and not copied from the output. + + + + + + Commit statement + + + A commit statement looks like + +exec sql commit; + + and is translated on the output to + +ECPGcommit(__LINE__); + + + + + + + Rollback statement + + + A rollback statement looks like + +exec sql rollback; + + and is translated on the output to + +ECPGrollback(__LINE__); + + + + + + Other statements -- 2.40.0