@@ -354,15 +354,15 @@ current=testdb1 (should be testdb1)
354354 </para>
355355
356356 <para>
357- The third option is to declare sql identifier linked to
357+ The third option is to declare a SQL identifier linked to
358358 the connection, for example:
359359<programlisting>
360360EXEC SQL AT <replaceable>connection-name</replaceable> DECLARE <replaceable>statement-name</replaceable> STATEMENT;
361361EXEC SQL PREPARE <replaceable>statement-name</replaceable> FROM :<replaceable>dyn-string</replaceable>;
362362</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.
366366 </para>
367367 <para>
368368 Here is an example program using this option:
@@ -6911,15 +6911,15 @@ EXEC SQL [ AT <replaceable class="parameter">connection_name</replaceable> ] DEC
69116911 <title>Description</title>
69126912
69136913 <para>
6914- <command>DECLARE STATEMENT</command> declares SQL statement identifier.
6914+ <command>DECLARE STATEMENT</command> declares a SQL statement identifier.
69156915 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.
69236923 </para>
69246924 </refsect1>
69256925
0 commit comments