We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1c7fad5 commit3c71ed7Copy full SHA for 3c71ed7
src/interfaces/ecpg/lib/ecpglib.c
@@ -691,7 +691,7 @@ ECPGexecute(struct statement * stmt)
691
if (PQresultStatus(query)==PGRES_TUPLES_OK) {
692
isarray=atol((char*)PQgetvalue(query,0,0));
693
if (ECPGDynamicType(PQftype(results,act_field))==SQL3_CHARACTER||
694
- (PQftype(results,act_field))==SQL3_CHARACTER_VARYING)
+ECPGDynamicType(PQftype(results,act_field))==SQL3_CHARACTER_VARYING)
695
{
696
/* arrays of character strings are not yet implemented */
697
isarray= false;
@@ -1091,7 +1091,7 @@ ECPGlog(const char *format,...)
1091
*
1092
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
1093
1094
- * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/ecpglib.c,v 1.61 2000/03/01 12:49:42 meskes Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/ecpg/lib/Attic/ecpglib.c,v 1.62 2000/03/03 14:39:26 meskes Exp $
1095
*/
1096
1097
PGconn*ECPG_internal_get_connection(char*name);