We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 375ed99 commit a172699Copy full SHA for a172699
doc/src/sgml/ecpg.sgml
@@ -935,20 +935,6 @@ struct varchar_var { int len; char arr[180]; } var;
935
is used.
936
</para>
937
938
- <para>
939
- Two or more <type>VARCHAR</type> host variables cannot be defined
940
- in single line statement. The following code will confuse
941
- the <command>ecpg</command> preprocessor:
942
-<programlisting>
943
-VARCHAR v1[128], v2[128]; /* WRONG */
944
-</programlisting>
945
- Two variables should be defined in separate statements like this:
946
947
-VARCHAR v1[128];
948
-VARCHAR v2[128];
949
950
- </para>
951
-
952
<para>
953
<type>VARCHAR</type> can be written in upper or lower case, but
954
not in mixed case.
0 commit comments