@@ -354,15 +354,15 @@ current=testdb1 (should be testdb1)
354
354
</para>
355
355
356
356
<para>
357
- The third option is to declare sql identifier linked to
357
+ The third option is to declare a SQL identifier linked to
358
358
the connection, for example:
359
359
<programlisting>
360
360
EXEC SQL AT <replaceable>connection-name</replaceable> DECLARE <replaceable>statement-name</replaceable> STATEMENT;
361
361
EXEC SQL PREPARE <replaceable>statement-name</replaceable> FROM :<replaceable>dyn-string</replaceable>;
362
362
</programlisting>
363
- Once you link a sql identifier to a connection, you execute a dynamic SQL
364
- without AT clause. Note that this option behaves like preprocessor directives,
365
- therefore the link is enabled only in the file.
363
+ Once you link a SQL identifier to a connection, you execute dynamic SQL
364
+ without an AT clause. Note that this option behaves like preprocessor
365
+ directives, therefore the link is enabled only in the file.
366
366
</para>
367
367
<para>
368
368
Here is an example program using this option:
@@ -6911,15 +6911,15 @@ EXEC SQL [ AT <replaceable class="parameter">connection_name</replaceable> ] DEC
6911
6911
<title>Description</title>
6912
6912
6913
6913
<para>
6914
- <command>DECLARE STATEMENT</command> declares SQL statement identifier.
6914
+ <command>DECLARE STATEMENT</command> declares a SQL statement identifier.
6915
6915
SQL statement identifier can be associated with the connection.
6916
- When the identifier is used by dynamic SQL statements, these SQLs are executed
6917
- by using the associated connection.
6918
- The namespace of the declaration is the precompile unit, and multiple declarations to
6919
- the same SQL statement identifier is not allowed.
6920
-
6921
- Note that if the precompiler run in the Informix compatibility mode and some SQL statement
6922
- is declared, "database" can not be used as a cursor name.
6916
+ When the identifier is used by dynamic SQL statements, the statements
6917
+ are executed using the associated connection.
6918
+ The namespace of the declaration is the precompile unit, and multiple
6919
+ declarations to the same SQL statement identifier are not allowed.
6920
+ Note that if the precompiler runs in Informix compatibility mode and
6921
+ some SQL statement is declared, "database" can not be used as a cursor
6922
+ name.
6923
6923
</para>
6924
6924
</refsect1>
6925
6925
0 commit comments