1- <!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.89 2009/05/18 11:08:24 petere Exp $ -->
1+ <!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.90 2009/07/11 21:15:32 petere Exp $ -->
22
33<chapter id="ecpg">
44 <title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
@@ -3062,7 +3062,7 @@ void dtcurrent(timestamp *ts);
30623062 <term><function>dtcvasc</></term>
30633063 <listitem>
30643064 <para>
3065- Parses a timestamp from its textual representation in ANSI standard
3065+ Parses a timestamp from its textual representation
30663066 into a timestamp variable.
30673067<synopsis>
30683068int dtcvasc(char *str, timestamp *ts);
@@ -3087,7 +3087,7 @@ int dtcvasc(char *str, timestamp *ts);
30873087 <term><function>dtcvfmtasc</></term>
30883088 <listitem>
30893089 <para>
3090- Parses a timestamp from its textual representation in ANSI standard
3090+ Parses a timestamp from its textual representation
30913091 using a format mask into a timestamp variable.
30923092<synopsis>
30933093dtcvfmtasc(char *inbuf, char *fmtstr, timestamp *dtvalue)
@@ -3140,7 +3140,7 @@ int dttoasc(timestamp *ts, char *output);
31403140 The function receives a pointer to the timestamp variable to convert
31413141 (<literal>ts</>) and the string that should hold the result of the
31423142 operation <literal>output</>). It converts <literal>ts</> to its
3143- textual representationin theANSI SQL standard which is defined to
3143+ textual representationaccording to the SQL standard, which is
31443144 be <literal>YYYY-MM-DD HH:MM:SS</literal>.
31453145 </para>
31463146 <para>
@@ -3187,7 +3187,7 @@ int intoasc(interval *i, char *str);
31873187 The function receives a pointer to the interval variable to convert
31883188 (<literal>i</>) and the string that should hold the result of the
31893189 operation <literal>str</>). It converts <literal>i</> to its
3190- textual representationin theANSI SQL standard which is defined to
3190+ textual representationaccording to the SQL standard, which is
31913191 be <literal>YYYY-MM-DD HH:MM:SS</literal>.
31923192 </para>
31933193 <para>