Lines Matching refs:zSql
70 char *zSql = 0; in ofstRootAndColumn() local
78 zSql = sqlite3_mprintf("SELECT rootpage FROM sqlite_schema WHERE name=%Q", in ofstRootAndColumn()
80 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); in ofstRootAndColumn()
81 if( rc ) ofstError(p, "%s: [%s]", sqlite3_errmsg(db), zSql); in ofstRootAndColumn()
82 sqlite3_free(zSql); in ofstRootAndColumn()
93 zSql = sqlite3_mprintf("PRAGMA table_info(%Q)", zTable); in ofstRootAndColumn()
94 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); in ofstRootAndColumn()
95 if( rc ) ofstError(p, "%s: [%s}", sqlite3_errmsg(db), zSql); in ofstRootAndColumn()
96 sqlite3_free(zSql); in ofstRootAndColumn()
113 zSql = sqlite3_mprintf("PRAGMA page_size"); in ofstRootAndColumn()
114 rc = sqlite3_prepare_v2(db, zSql, -1, &pStmt, 0); in ofstRootAndColumn()
115 if( rc ) ofstError(p, "%s: [%s]", sqlite3_errmsg(db), zSql); in ofstRootAndColumn()
116 sqlite3_free(zSql); in ofstRootAndColumn()