From d1b3915ce181938a432b1098aa6bf4d47c721a98 Mon Sep 17 00:00:00 2001
From: Bruce Momjian
Date: Mon, 19 Apr 2004 23:36:48 +0000
Subject: In reading the 7.4.2 docs, the sql reference page for PREPARE doesn't
reference DEALLOCATE in any way. It points to EXECUTE, but not to DEALLOCATE.
Suggested fix:
... This also means that a single prepared statement cannot be used by
multiple simultaneous database clients; however, each client can create
their own prepared statement to use. The prepared statement can be
manually cleaned up using the DEALLOCATE command.
James Robinson
---
doc/src/sgml/ref/prepare.sgml | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
(limited to 'doc/src')
diff --git a/doc/src/sgml/ref/prepare.sgml b/doc/src/sgml/ref/prepare.sgml
index 780c5231c4b..6a77048c3eb 100644
--- a/doc/src/sgml/ref/prepare.sgml
+++ b/doc/src/sgml/ref/prepare.sgml
@@ -1,5 +1,5 @@
@@ -54,10 +54,11 @@ PREPARE plan_name [ (
Prepared statements only last for the duration of the current
database session. When the session ends, the prepared statement is
- forgotten, so it must be recreated before being used again. This
- also means that a single prepared statement cannot be used by
- multiple simultaneous database clients; however, each client can
- create their own prepared statement to use.
+ forgotten, so it must be recreated before being used again. This
+ also means that a single prepared statement cannot be used by
+ multiple simultaneous database clients; however, each client can create
+ their own prepared statement to use. The prepared statement can be
+ manually cleaned up using the DEALLOCATE> command.
--
cgit v1.2.3