Lines Matching refs:zObj
17128 ** statement used to test object zObj, which may be a table or index.
17132 const char *sqlite3_intck_test_sql(sqlite3_intck *pCk, const char *zObj);
17185 char *zObj; /* Current object. Or NULL. */
17328 p->zDb, p->zObj, p->zDb, p->zObj
17411 ** set sqlite3_intck.zObj to point to a nul-terminated buffer containing
17416 char *zPrev = p->zObj;
17417 p->zObj = 0;
17438 p->zObj = intckMprintf(p,"%s",(const char*)sqlite3_column_text(pStmt, 0));
17444 if( sqlite3_stricmp(p->zObj, zPrev) ){
17624 ** Return true if zObj is an index, or false otherwise.
17626 static int intckIsIndex(sqlite3_intck *p, const char *zObj){
17631 p->zDb, zObj
17642 ** used to check database object zObj (a table or index) for corruption.
17652 const char *zObj, /* Object (table or index) to scan */
17772 bIsIndex = intckIsIndex(p, zObj);
17824 , p->zDb, p->zDb, zObj, zObj
17836 /* expr(e) contains one row for each index on table zObj. Value e
17904 p->zDb, zObj, zPrev, zCommon
17963 sqlite3_free(p->zObj);
17989 if( p->zObj ){
17991 zSql = intckCheckObjectSql(p, p->zObj, p->zKey, &p->nKeyVal);
18019 "corruption found while scanning database object %s", p->zObj
18067 ** Return the SQL statement used to check object zObj. Or, if zObj is
18070 const char *sqlite3_intck_test_sql(sqlite3_intck *p, const char *zObj){
18072 if( zObj ){
18073 p->zTestSql = intckCheckObjectSql(p, zObj, 0, 0);
18075 if( p->zObj ){
18076 p->zTestSql = intckCheckObjectSql(p, p->zObj, p->zKey, 0);