From 6bb2972c094032edc88e7c4fc518afe1e7b5d579 Mon Sep 17 00:00:00 2001
From: Michael Meskes
Date: Wed, 27 Nov 2013 11:03:59 +0100
Subject: Documentation fix for ecpg.
The latest fixes removed a limitation that was still in the docs, so Zoltan updated the docs, too.
---
doc/src/sgml/ecpg.sgml | 14 --------------
1 file changed, 14 deletions(-)
(limited to 'doc/src')
diff --git a/doc/src/sgml/ecpg.sgml b/doc/src/sgml/ecpg.sgml
index fc9ba0c0186..f197665089f 100644
--- a/doc/src/sgml/ecpg.sgml
+++ b/doc/src/sgml/ecpg.sgml
@@ -942,20 +942,6 @@ struct varchar_var { int len; char arr[180]; } var;
is used.
-
- Two or more VARCHAR host variables cannot be defined
- in single line statement. The following code will confuse
- the ecpg preprocessor:
-
-VARCHAR v1[128], v2[128]; /* WRONG */
-
- Two variables should be defined in separate statements like this:
-
-VARCHAR v1[128];
-VARCHAR v2[128];
-
-
-
VARCHAR can be written in upper or lower case, but
not in mixed case.
--
cgit v1.2.3