Lines Matching defs:zObj
14233 ** statement used to test object zObj, which may be a table or index.
14237 const char *sqlite3_intck_test_sql(sqlite3_intck *pCk, const char *zObj);
14290 char *zObj; /* Current object. Or NULL. */
14432 p->zDb, p->zObj, p->zDb, p->zObj
14515 ** set sqlite3_intck.zObj to point to a nul-terminated buffer containing
14520 char *zPrev = p->zObj;
14521 p->zObj = 0;
14542 p->zObj = intckMprintf(p,"%s",(const char*)sqlite3_column_text(pStmt, 0));
14548 if( sqlite3_stricmp(p->zObj, zPrev) ){
14728 ** Return true if zObj is an index, or false otherwise.
14730 static int intckIsIndex(sqlite3_intck *p, const char *zObj){
14735 p->zDb, zObj
14746 ** used to check database object zObj (a table or index) for corruption.
14756 const char *zObj, /* Object (table or index) to scan */
14876 bIsIndex = intckIsIndex(p, zObj);
14928 , p->zDb, p->zDb, zObj, zObj
14940 /* expr(e) contains one row for each index on table zObj. Value e
15008 p->zDb, zObj, zPrev, zCommon
15067 sqlite3_free(p->zObj);
15093 if( p->zObj ){
15095 zSql = intckCheckObjectSql(p, p->zObj, p->zKey, &p->nKeyVal);
15123 "corruption found while scanning database object %s", p->zObj
15171 ** Return the SQL statement used to check object zObj. Or, if zObj is
15174 const char *sqlite3_intck_test_sql(sqlite3_intck *p, const char *zObj){
15176 if( zObj ){
15177 p->zTestSql = intckCheckObjectSql(p, zObj, 0, 0);
15179 if( p->zObj ){
15180 p->zTestSql = intckCheckObjectSql(p, p->zObj, p->zKey, 0);