Home | History | Annotate | Download | only in dist

Lines Matching refs:sqlite3_sql

4743 ** ^The sqlite3_sql(P) interface returns a pointer to a copy of the UTF-8
4753 ** and parameter :xyz is unbound, then sqlite3_sql() will return
4765 ** ^The string returned by sqlite3_sql(P) is managed by SQLite and is
4771 SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt);
79408 SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt){
79427 const char *zSql = sqlite3_sql(pStmt);
87070 ** Or if P4 is blank, use the string returned by sqlite3_sql().
113751 #define sqlite3_sql sqlite3_api->sql
114172 sqlite3_sql,
118496 zSql = sqlite3_sql((sqlite3_stmt *)p);
207471 sqlite3_result_text(ctx, sqlite3_sql(pCur->pStmt), -1, SQLITE_TRANSIENT);