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

Method q

sqlite.cc:73–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void sqlite_connection::q(const char *query)
74{
75 rc = sqlite3_exec(db, query, callback, 0, &zErrMsg);
76 if( rc!=SQLITE_OK ){
77 auto e = std::runtime_error(zErrMsg);
78 sqlite3_free(zErrMsg);
79 throw e;
80 }
81}
82
83sqlite_connection::~sqlite_connection()
84{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected