Home
last modified time | relevance | path

Searched refs:pS2 (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/test/
H A Dfuzzinvariants.c307 sqlite3_stmt *pS2, int i2, /* Value to test on the right */ in sameValue() argument
312 int t2 = sqlite3_column_type(pS2,i2); in sameValue()
324 x = sqlite3_column_int64(pS1,i1)==sqlite3_column_int64(pS2,i2); in sameValue()
328 x = sqlite3_column_double(pS1,i1)==sqlite3_column_double(pS2,i2); in sameValue()
333 int e2 = sqlite3_value_encoding(sqlite3_column_value(pS2,i2)); in sameValue()
336 const char *z2 = (const char*)sqlite3_column_text(pS2,i2); in sameValue()
343 sqlite3_bind_value(pTestCompare, 2, sqlite3_column_value(pS2,i2)); in sameValue()
352 int len2 = sqlite3_column_bytes16(pS2,i2); in sameValue()
353 const unsigned char *b2 = sqlite3_column_blob(pS2,i2); in sameValue()
368 int len2 = sqlite3_column_bytes(pS2,i2); in sameValue()
[all …]
/sqlite-3.40.0/ext/misc/
H A Dcompletion.c221 sqlite3_stmt *pS2; in completionNext() local
224 sqlite3_prepare_v2(pCur->db, "PRAGMA database_list", -1, &pS2, 0); in completionNext()
225 while( sqlite3_step(pS2)==SQLITE_ROW ){ in completionNext()
226 const char *zDb = (const char*)sqlite3_column_text(pS2, 1); in completionNext()
235 sqlite3_finalize(pS2); in completionNext()
245 sqlite3_stmt *pS2; in completionNext() local
248 sqlite3_prepare_v2(pCur->db, "PRAGMA database_list", -1, &pS2, 0); in completionNext()
249 while( sqlite3_step(pS2)==SQLITE_ROW ){ in completionNext()
250 const char *zDb = (const char*)sqlite3_column_text(pS2, 1); in completionNext()
261 sqlite3_finalize(pS2); in completionNext()
/sqlite-3.40.0/tool/
H A Dindex_usage.c163 sqlite3_stmt *pS2; in main() local
166 rc = sqlite3_prepare_v2(db, zSql, -1, &pS2, 0); in main()
181 while( sqlite3_step(pS2)==SQLITE_ROW ){ in main()
182 const char *zExplain = (const char*)sqlite3_column_text(pS2,3); in main()
200 sqlite3_finalize(pS2); in main()