execute queries on MonetDB
| 42 | |
| 43 | // execute queries on MonetDB |
| 44 | void 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 |
| 53 | monetdb_connection::~monetdb_connection() |
nothing calls this directly
no outgoing calls
no test coverage detected