From 6eb9c5a5657d1fe77b55cc261450f3538d35a94d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:19:15 +0200 Subject: Adding upstream version 13.4. Signed-off-by: Daniel Baumann --- doc/src/sgml/ref/deallocate.sgml | 98 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 doc/src/sgml/ref/deallocate.sgml (limited to 'doc/src/sgml/ref/deallocate.sgml') diff --git a/doc/src/sgml/ref/deallocate.sgml b/doc/src/sgml/ref/deallocate.sgml new file mode 100644 index 0000000..3875e50 --- /dev/null +++ b/doc/src/sgml/ref/deallocate.sgml @@ -0,0 +1,98 @@ + + + + + DEALLOCATE + + + + prepared statements + removing + + + + DEALLOCATE + 7 + SQL - Language Statements + + + + DEALLOCATE + deallocate a prepared statement + + + + +DEALLOCATE [ PREPARE ] { name | ALL } + + + + + Description + + + DEALLOCATE is used to deallocate a previously + prepared SQL statement. If you do not explicitly deallocate a + prepared statement, it is deallocated when the session ends. + + + + For more information on prepared statements, see . + + + + + Parameters + + + + PREPARE + + + This key word is ignored. + + + + + + name + + + The name of the prepared statement to deallocate. + + + + + + ALL + + + Deallocate all prepared statements. + + + + + + + + Compatibility + + + The SQL standard includes a DEALLOCATE + statement, but it is only for use in embedded SQL. + + + + + See Also + + + + + + + -- cgit v1.2.3