1 /*-------------------------------------------------------------------------
3 * Facilities for frontend code to query a databases.
5 * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
6 * Portions Copyright (c) 1994, Regents of the University of California
8 * src/include/fe_utils/query_utils.h
10 *-------------------------------------------------------------------------
15 #include "postgres_fe.h"
19 extern PGresult
*executeQuery(PGconn
*conn
, const char *query
, bool echo
);
21 extern void executeCommand(PGconn
*conn
, const char *query
, bool echo
);
23 extern bool executeMaintenanceCommand(PGconn
*conn
, const char *query
,
26 #endif /* QUERY_UTILS_H */