MCPcopy Create free account
hub / github.com/anse1/sqlsmith / q

Method q

monetdb.cc:44–50  ·  view source on GitHub ↗

execute queries on MonetDB

Source from the content-addressed store, hash-verified

42
43// execute queries on MonetDB
44void monetdb_connection::q(const char* query)
45{
46 MapiHdl hdl = mapi_query(dbh, query);
47 if (mapi_result_error(hdl) != NULL)
48 mapi_explain_result(hdl, stderr);
49 mapi_close_handle(hdl);
50}
51
52// disconnect MonetDB
53monetdb_connection::~monetdb_connection()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected