Home
last modified time | relevance | path

Searched refs:sqlite3_sql (Results 1 – 18 of 18) sorted by relevance

/sqlite-3.40.0/test/
H A Dthreadtest4.c301 worker_trace(p, "query [%s]", sqlite3_sql(pStmt)); in worker_thread()
304 worker_error(p, "Failed to step: %s", sqlite3_sql(pStmt)); in worker_thread()
339 worker_trace(p, "query [%s]", sqlite3_sql(pStmt)); in worker_thread()
343 worker_error(p, "Failed to step: %s", sqlite3_sql(pStmt)); in worker_thread()
H A Dfuzzinvariants.c139 if( sqlite3_strlike("%group%by%order%by%desc%",sqlite3_sql(pStmt),0)==0 ){ in fuzz_invariant()
153 if( sqlite3_strlike("%limit%)%order%by%", sqlite3_sql(pTestStmt),0)==0 ){ in fuzz_invariant()
258 zIn = sqlite3_sql(pStmt); in fuzz_invariant_sql()
H A Doptfuzz.c150 zOutTab, sqlite3_sql(pStmt) in optfuzz_exec()
H A Dthreadtest3.c628 if( 0==strcmp(sqlite3_sql(pRet->pStmt), zSql) ){ in getSqlStatement()
639 assert( 0==strcmp(sqlite3_sql(pRet->pStmt), zSql) ); in getSqlStatement()
H A Dspeedtest1.c621 sqlite3_prepare_v2(g.db, sqlite3_sql(g.pStmt), -1, &pNew, 0); in speedtest1_run()
/sqlite-3.40.0/ext/misc/
H A Dsha1.c300 char *zMsg = sqlite3_mprintf("non-query: [%s]", sqlite3_sql(pStmt)); in sha1QueryFunc()
307 z = sqlite3_sql(pStmt); in sha1QueryFunc()
H A Dstmt.c222 const char *zSql = sqlite3_sql(p); in stmtFilter()
H A Dshathree.c620 char *zMsg = sqlite3_mprintf("non-query: [%s]", sqlite3_sql(pStmt)); in sha3QueryFunc()
627 z = sqlite3_sql(pStmt); in sha3QueryFunc()
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js810 opt.saveSql.push(capi.sqlite3_sql(pStmt).trim());
1524 "SQL =", capi.sqlite3_sql(this.pointer));
/sqlite-3.40.0/src/
H A Dloadext.c339 sqlite3_sql,
H A Dvdbeapi.c1858 const char *sqlite3_sql(sqlite3_stmt *pStmt){ in sqlite3_sql() function
1877 const char *zSql = sqlite3_sql(pStmt); in sqlite3_expanded_sql()
H A Dprepare.c877 zSql = sqlite3_sql((sqlite3_stmt *)p); in sqlite3Reprepare()
H A Dsqlite3ext.h550 #define sqlite3_sql sqlite3_api->sql macro
H A Dtclsqlite.c497 if( sqlite3_sql(pStmt->pStmt)==0 ){ in dbFreeStmt()
1399 pPreStmt->zSql = sqlite3_sql(pStmt); in dbPrepareAndBind()
H A Dtest1.c5120 Tcl_SetResult(interp, (char *)sqlite3_sql(pStmt), TCL_VOLATILE); in test_sql()
7164 zSql = sqlite3_sql(pStmt); in printExplainQueryPlan()
H A Dshell.c.in3070 zSql = sqlite3_sql(pSql);
3907 zStmtSql = sqlite3_sql(pStmt);
5434 zSql = sqlite3_sql(pStmt);
6897 utf8_printf(pAr->p->out, "%s\n", sqlite3_sql(pSql));
7013 utf8_printf(pAr->p->out, "%s\n", sqlite3_sql(pSql));
H A Dsqlite.h.in4236 ** ^The sqlite3_sql(P) interface returns a pointer to a copy of the UTF-8
4251 ** and parameter :xyz is unbound, then sqlite3_sql() will return
4263 ** ^The strings returned by sqlite3_sql(P) and sqlite3_normalized_sql(P)
4273 const char *sqlite3_sql(sqlite3_stmt *pStmt);
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c1927 const char *z = sqlite3_sql(pStmt); in sqlite3_expert_sql()