diff -rpcd orig/doc/src/sgml/ecpg.sgml new/doc/src/sgml/ecpg.sgml *** orig/doc/src/sgml/ecpg.sgml 2013-05-07 05:57:06.000000000 +0900 --- new/doc/src/sgml/ecpg.sgml 2013-06-27 14:29:03.000000000 +0900 *************** VAR varname I *** 7691,7699 **** Description ! The VAR command defines a host variable. It ! is equivalent to an ordinary C variable definition inside a ! declare section. --- 7691,7699 ---- Description ! The VAR command assigns a new C data type ! to a host variable. The host variable must be previously ! declared in a declare section. *************** VAR varname I *** 7725,7732 **** Examples ! EXEC SQL VAR vc IS VARCHAR[10]; ! EXEC SQL VAR boolvar IS bool; --- 7725,7734 ---- Examples ! Exec sql begin declare section; ! short a; ! exec sql end declare section; ! EXEC SQL VAR a IS int;