summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meskes2013-11-27 10:03:59 +0000
committerMichael Meskes2013-11-27 10:15:32 +0000
commita1726994bfd72cedc2808191139dea0d7f77f9f8 (patch)
treed9faac0e7e031750b78c90152d7b53eddad8b0a3
parent375ed999efef0c551615b0a23763932714e74bf6 (diff)
Documentation fix for ecpg.
The latest fixes removed a limitation that was still in the docs, so Zoltan updated the docs, too.
-rw-r--r--doc/src/sgml/ecpg.sgml14
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml
index 4ffffe96b37..f05a44797fc 100644
--- a/doc/src/sgml/ecpg.sgml
+++ b/doc/src/sgml/ecpg.sgml
@@ -936,20 +936,6 @@ struct varchar_var { int len; char arr[180]; } var;
</para>
<para>
- Two or more <type>VARCHAR</type> host variables cannot be defined
- in single line statement. The following code will confuse
- the <command>ecpg</command> preprocessor:
-<programlisting>
-VARCHAR v1[128], v2[128]; /* WRONG */
-</programlisting>
- Two variables should be defined in separate statements like this:
-<programlisting>
-VARCHAR v1[128];
-VARCHAR v2[128];
-</programlisting>
- </para>
-
- <para>
<type>VARCHAR</type> can be written in upper or lower case, but
not in mixed case.
</para>