diff options
author | Michael Meskes <meskes@postgresql.org> | 2013-11-27 11:03:59 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2013-11-27 11:03:59 +0100 |
commit | 2390f2b2d3ef708c282846457b6fd837a0c08061 (patch) | |
tree | 17d0582b038d4d9c46e7b11ca1adcd3e1be03289 /doc/src | |
parent | 51867a0f9b5c6d15c541e19c202520e95c5950a0 (diff) | |
download | postgresql-2390f2b2d3ef708c282846457b6fd837a0c08061.tar.gz postgresql-2390f2b2d3ef708c282846457b6fd837a0c08061.zip |
Documentation fix for ecpg.
The latest fixes removed a limitation that was still in the docs, so Zoltan updated the docs, too.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ecpg.sgml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml index 120d760ba21..f9536ee1e49 100644 --- a/doc/src/sgml/ecpg.sgml +++ b/doc/src/sgml/ecpg.sgml @@ -945,20 +945,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> |