📄 declare.sgml
字号:
<refentry id="SQL-DECLARE"> <refmeta> <refentrytitle> DECLARE </refentrytitle> <refmiscinfo>SQL - Language Statements</refmiscinfo> </refmeta> <refnamediv> <refname> DECLARE </refname> <refpurpose> Defines a cursor for table access </refpurpose> </refnamediv> <refsynopsisdiv> <refsynopsisdivinfo> <date>1998-09-04</date> </refsynopsisdivinfo> <synopsis>DECLARE <replaceable class="parameter">cursor</replaceable> [ BINARY ] [ INSENSITIVE ] [ SCROLL ] CURSOR FOR <replaceable class="parameter">query</replaceable> [ FOR { READ ONLY | UPDATE [ OF <replaceable class="parameter">column</replaceable> [, ...] ] ] </synopsis> <refsect2 id="R2-SQL-DECLARE-1"> <refsect2info> <date>1998-04-15</date> </refsect2info> <title> Inputs </title> <para> <variablelist> <varlistentry> <term><replaceable class="parameter">cursor</replaceable></term> <listitem> <para> The name of the cursor to be used in subsequent FETCH operations.. </para> </listitem> </varlistentry> <varlistentry> <term>BINARY</term> <listitem> <para> Causes the cursor to fetch data in binary rather than in text format. </para> </listitem> </varlistentry> <varlistentry> <term>INSENSITIVE</term> <listitem> <para> <acronym>SQL92</acronym> keyword indicating that data retrieved from the cursor should be unaffected by updates from other processes or cursors. Since cursor operations occur within transactions in <productname>Postgres</productname> this is always the case. This keyword has no effect. </para> </listitem> </varlistentry> <varlistentry> <term>SCROLL</term> <listitem> <para> <acronym>SQL92</acronym> keyword indicating that data may be retrieved in multiple rows per FETCH operation. Since this is allowed at all times by <productname>Postgres</productname> this keyword has no effect. </para> </listitem> </varlistentry> <varlistentry> <term><replaceable class="parameter">query</replaceable></term> <listitem> <para> An SQL query which will provide the rows to be governed by the cursor. Refer to the SELECT statement for further information about valid arguments. </para> </listitem> </varlistentry> <varlistentry> <term>READ ONLY</term> <listitem> <para> <acronym>SQL92</acronym> keyword indicating that the cursor will be used in a readonly mode. Since this is the only cursor access mode available in <productname>Postgres</productname> this keyword has no effect. </para> </listitem> </varlistentry> <varlistentry> <term>UPDATE</term> <listitem> <para> <acronym>SQL92</acronym> keyword indicating that the cursor will be used to update tables. Since cursor updates are not currently supported in <productname>Postgres</productname> this keyword provokes an informational error message. </para> </listitem> </varlistentry> <varlistentry> <term><replaceable class="parameter">column</replaceable></term> <listitem> <para> Column(s) to be updated. Since cursor updates are not currently supported in <productname>Postgres</productname> the UPDATE clause provokes an informational error message. </para> </listitem> </varlistentry> </variablelist> </para> </refsect2> <refsect2 id="R2-SQL-DECLARE-2"> <refsect2info> <date>1998-04-15</date> </refsect2info> <title> Outputs </title> <para> <variablelist> <varlistentry> <term><computeroutput>SELECT </computeroutput></term> <listitem> <para> The message returned if the SELECT is run successfully. </para> </listitem> </varlistentry> <varlistentry> <term><computeroutput>NOTICEBlankPortalAssignName: portal "<replaceable class="parameter">cursor</replaceable>" already exists </computeroutput></term> <listitem> <para> This error occurs if <replaceable class="parameter">cursor</replaceable> is already declared. </para> </listitem> </varlistentry> <varlistentry> <term><computeroutput>ERROR: Named portals may only be used in begin/end transaction blocks </computeroutput></term> <listitem> <para> This error occurs if the cursor is not declared within a transaction block. </para> </listitem> </varlistentry> </variablelist> </para> </refsect2> </refsynopsisdiv> <refsect1 id="R1-SQL-DECLARE-1"> <refsect1info> <date>1998-09-04</date> </refsect1info> <title> Description </title> <para> <command>DECLARE</command> allows a user to create cursors, which can be used to retrieve a small number of rows at a time out of a larger query. Cursors can return data either in text or in binary foramt. </para> <para> Normal cursors return data in text format, either ASCII or another encoding scheme depending on how the <productname>Postgres</productname> backend was built. Since data is stored natively in binary format, the system must do a conversion to produce the text format. In addition, text formats are often larger in size than the corresponding binary format. Once the information comes back in text form, the client application may have to convert it to a binary format to manipulate it anyway. </para> <para> BINARY cursors give you back the data in the native binary representation. So binary cursors will tend to be a little faster since they suffer less conversion overhead. </para> <para> As an example, if a query returns a value of one from an integer column, you would get a string of '1' with a default cursor whereas with a binary cursor you would get a 4-byte value equal to control-A ('^A'). <caution> <para> BINARY cursors should be used carefully. User applications such as <application>psql</application> are not aware of binary cursors and expect data to come back in a text format. </para> </caution> </para> <para> However, string representation is architecture-neutral whereas binary representation can differ between different machine architectures. Therefore, if your client machine and server machine use different representations (e.g. "big-endian" versus "little-endian"), you will probably not want your data returned in binary format. <tip> <para> If you intend to display the data in ASCII, getting it back in ASCII will save you some effort on the client side. </para> </tip> </para> <refsect2 id="R2-SQL-DECLARE-3"> <refsect2info> <date>1998-09-04</date> </refsect2info> <title> Notes </title> <para> Cursors are only available in transactions. </para> <para> <productname>Postgres</productname> does not have an explicit <command>OPEN cursor</command> statement; a cursor is considered to be open when it is declared. <note> <para> In <acronym>SQL92</acronym> cursors are only available in embedded applications. <application>ecpg</application>, the embedded SQL preprocessor for <productname>Postgres</productname>, supports the <acronym>SQL92</acronym> conventions, including those involving DECLARE and OPEN statements. </para> </note> </para> </refsect2> </refsect1> <refsect1 id="R1-SQL-DECLARESTATEMENT-2"> <title> Usage </title> <para> To declare a cursor: <programlisting>DECLARE liahona CURSOR FOR SELECT * FROM films; </programlisting> </para> </refsect1> <refsect1 id="R1-SQL-DECLARESTATEMENT-3"> <title> Compatibility </title> <para> </para> <refsect2 id="R2-SQL-DECLARESTATEMENT-4"> <refsect2info> <date>1998-04-15</date> </refsect2info> <title> SQL92 </title> <para> <acronym>SQL92</acronym> allows cursors only in embedded <acronym>SQL</acronym> and in modules. <productname>Postgres</productname> permits cursors to be used interactively. <acronym>SQL92</acronym> allows embedded or modular cursors to update database information. All <productname>Postgres</productname> cursors are readonly. The BINARY keyword is a <productname>Postgres</productname> extension. </para> </refsect2> </refsect1></refentry><!-- Keep this comment at the end of the fileLocal variables:mode: sgmlsgml-omittag:nilsgml-shorttag:tsgml-minimize-attributes:nilsgml-always-quote-attributes:tsgml-indent-step:1sgml-indent-data:tsgml-parent-document:nilsgml-default-dtd-file:"../reference.ced"sgml-exposed-tags:nilsgml-local-catalogs:"/usr/lib/sgml/catalog"sgml-local-ecat-files:nilEnd:-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -