⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deallocate.sgml

📁 postgresql8.3.4源码,开源数据库
💻 SGML
字号:
<!--$PostgreSQL: pgsql/doc/src/sgml/ref/deallocate.sgml,v 1.10 2007/04/12 06:53:46 neilc Exp $PostgreSQL documentation--><refentry id="SQL-DEALLOCATE"> <refmeta>  <refentrytitle id="sql-deallocate-title">DEALLOCATE</refentrytitle>  <refmiscinfo>SQL - Language Statements</refmiscinfo> </refmeta> <refnamediv>  <refname>DEALLOCATE</refname>  <refpurpose>deallocate a prepared statement</refpurpose> </refnamediv> <indexterm zone="sql-deallocate">  <primary>DEALLOCATE</primary> </indexterm> <indexterm zone="sql-deallocate">  <primary>prepared statements</primary>  <secondary>removing</secondary> </indexterm> <refsynopsisdiv><synopsis>DEALLOCATE [ PREPARE ] { <replaceable class="parameter">name</replaceable> | ALL }</synopsis> </refsynopsisdiv> <refsect1>  <title>Description</title>  <para>   <command>DEALLOCATE</command> 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.  </para>  <para>   For more information on prepared statements, see <xref   linkend="sql-prepare" endterm="sql-prepare-title">.  </para> </refsect1> <refsect1>  <title>Parameters</title>  <variablelist>   <varlistentry>    <term><literal>PREPARE</literal></term>    <listitem>     <para>      This key word is ignored.     </para>    </listitem>   </varlistentry>   <varlistentry>    <term><replaceable class="parameter">name</replaceable></term>    <listitem>     <para>      The name of the prepared statement to deallocate.     </para>    </listitem>   </varlistentry>   <varlistentry>    <term><literal>ALL</literal></term>    <listitem>     <para>      Deallocate all prepared statements.     </para>    </listitem>   </varlistentry>  </variablelist> </refsect1> <refsect1>  <title>Compatibility</title>  <para>   The SQL standard includes a <command>DEALLOCATE</command>   statement, but it is only for use in embedded SQL.  </para> </refsect1> <refsect1>  <title>See Also</title>  <simplelist type="inline">   <member><xref linkend="sql-execute" endterm="sql-execute-title"></member>   <member><xref linkend="sql-prepare" endterm="sql-prepare-title"></member>  </simplelist> </refsect1></refentry>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -