Home
last modified time | relevance | path

Searched refs:sqlite3_expanded_sql (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/test/
H A Dtrace3.test12 # this test file is the "sqlite3_trace_v2()" and "sqlite3_expanded_sql()"
188 list [sqlite3_bind_null $STMT 1] [sqlite3_expanded_sql $STMT]
191 list [sqlite3_bind_int $STMT 1 123] [sqlite3_expanded_sql $STMT]
194 list [sqlite3_bind_int64 $STMT 1 123] [sqlite3_expanded_sql $STMT]
198 [sqlite3_expanded_sql $STMT]
202 [sqlite3_expanded_sql $STMT]
210 [sqlite3_expanded_sql $STMT]
214 [sqlite3_expanded_sql $STMT]
218 [sqlite3_expanded_sql $STMT]
270 sqlite3_expanded_sql $STMT
[all …]
H A Dfuzzinvariants.c105 char *zSql = sqlite3_expanded_sql(pTestStmt); in fuzz_invariant()
474 printf("%s\n", sqlite3_expanded_sql(pOrig)); in reportInvariantFailed()
476 printf("%s\n", sqlite3_expanded_sql(pTest)); in reportInvariantFailed()
H A Dspeedtest1.c526 char *z = sqlite3_expanded_sql(pStmt); in speedtest1_once()
568 char *z = sqlite3_expanded_sql(g.pStmt); in speedtest1_run()
H A Dtester.tcl2578 sqlite3_expanded_sql $stmt
/sqlite-3.40.0/src/
H A Dloadext.c426 sqlite3_expanded_sql,
H A Dsqlite3ext.h619 #define sqlite3_expanded_sql sqlite3_api->expanded_sql macro
H A Dvdbeapi.c1872 char *sqlite3_expanded_sql(sqlite3_stmt *pStmt){ in sqlite3_expanded_sql() function
H A Dsqlite.h.in3283 ** [sqlite3_expanded_sql(P)] otherwise.
4240 ** ^The sqlite3_expanded_sql(P) interface returns a pointer to a UTF-8
4252 ** the original string, "SELECT $abc,:xyz" but sqlite3_expanded_sql()
4255 ** ^The sqlite3_expanded_sql() interface returns NULL if insufficient memory
4261 ** option causes sqlite3_expanded_sql() to always return NULL.
4266 ** ^The string returned by sqlite3_expanded_sql(P), on the other hand,
4274 char *sqlite3_expanded_sql(sqlite3_stmt *pStmt);
H A Dtest1.c5138 z = sqlite3_expanded_sql(pStmt); in test_ex_sql()
H A Dshell.c.in5424 zSql = sqlite3_expanded_sql(pStmt);