Lines Matching refs:pzErrmsg
164 char **pzErrmsg; member
316 char **pzErrmsg /* Write error here */ in idxDatabaseError() argument
318 *pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db)); in idxDatabaseError()
327 char **pzErrmsg, /* OUT: sqlite3_malloc()ed error message */ in idxPrepareStmt() argument
333 idxDatabaseError(db, pzErrmsg); in idxPrepareStmt()
344 char **pzErrmsg, /* OUT: sqlite3_malloc()ed error message */ in idxPrintfPrepareStmt() argument
356 rc = idxPrepareStmt(db, ppStmt, pzErrmsg, zSql); in idxPrintfPrepareStmt()
696 char **pzErrmsg /* OUT: Error message (if not) */ in idxGetTableInfo() argument
711 rc = idxPrintfPrepareStmt(db, &p1, pzErrmsg, "PRAGMA table_xinfo=%Q", zTab); in idxGetTableInfo()
1029 rc = sqlite3_exec(dbm, zIdx, 0, 0, p->pzErrmsg); in idxCreateFromCons()
1395 static int idxCreateVtabSchema(sqlite3expert *p, char **pzErrmsg){ in idxCreateVtabSchema() argument
1404 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
1420 if( zSql ) rc = sqlite3_exec(p->dbv, zSql, 0, 0, pzErrmsg); in idxCreateVtabSchema()
1423 rc = idxGetTableInfo(p->db, zName, &pTab, pzErrmsg); in idxCreateVtabSchema()
1445 rc = sqlite3_exec(p->dbv, zOuter, 0, 0, pzErrmsg); in idxCreateVtabSchema()
1824 sqlite3expert *sqlite3_expert_new(sqlite3 *db, char **pzErrmsg){ in sqlite3_expert_new() argument
1852 rc = idxPrintfPrepareStmt(pNew->db, &pSql, pzErrmsg, in sqlite3_expert_new()
1858 if( zSql ) rc = sqlite3_exec(pNew->dbm, zSql, 0, 0, pzErrmsg); in sqlite3_expert_new()
1865 rc = idxCreateVtabSchema(pNew, pzErrmsg); in sqlite3_expert_new()