*** pgsql/src/interfaces/ecpg/ecpglib/execute.c 2009/02/03 08:55:45 1.82 --- pgsql/src/interfaces/ecpg/ecpglib/execute.c 2009/05/20 16:13:18 1.83 *************** *** 1,4 **** ! /* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.81 2009/02/03 08:48:29 meskes Exp $ */ /* * The aim is to get a simpler inteface to the database routines. --- 1,4 ---- ! /* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.82 2009/02/03 08:55:45 meskes Exp $ */ /* * The aim is to get a simpler inteface to the database routines. *************** ECPGdo(const int lineno, const int compa *** 1501,1507 **** */ if (statement_type == ECPGst_prepnormal) { ! if (!ecpg_auto_prepare(lineno, connection_name, compat, questionmarks, &prepname, query)) return (false); /* --- 1501,1507 ---- */ if (statement_type == ECPGst_prepnormal) { ! if (!ecpg_auto_prepare(lineno, connection_name, compat, &prepname, query)) return (false); /* *************** ECPGdo(const int lineno, const int compa *** 1519,1525 **** if (statement_type == ECPGst_execute) { /* if we have an EXECUTE command, only the name is send */ ! char *command = ecpg_prepared(stmt->command, con, lineno); if (command) { --- 1519,1525 ---- if (statement_type == ECPGst_execute) { /* if we have an EXECUTE command, only the name is send */ ! char *command = ecpg_prepared(stmt->command, con); if (command) {