Searched refs:sqlite3_stmt_explain (Results 1 – 4 of 4) sorted by relevance
| /freebsd-src/contrib/sqlite3/ |
| H A D | sqlite3ext.h | 698 #define sqlite3_stmt_explain sqlite3_api->stmt_explain macro
|
| H A D | sqlite3.h | 4451 ** The sqlite3_stmt_explain(S,E) interface changes the EXPLAIN 4457 ** Calling sqlite3_stmt_explain(S,E) might cause S to be reprepared. 4462 ** sqlite3_stmt_explain(S,E) will fail with SQLITE_ERROR if S cannot be 4469 ** began with EXPLAIN or EXPLAIN QUERY PLAN, but sqlite3_stmt_explain(S,0) 4478 ** immediately prior to calling sqlite3_stmt_explain(S,E). 4480 SQLITE_API int sqlite3_stmt_explain(sqlite3_stmt *pStmt, int eMode);
|
| H A D | shell.c | 22361 rc = sqlite3_stmt_explain(pExplain, 2); in shell_exec() 22376 rc = sqlite3_stmt_explain(pExplain, 1); in shell_exec() 22389 sqlite3_stmt_explain(pStmt, 0); in shell_exec()
|
| H A D | sqlite3.c | 4764 ** The sqlite3_stmt_explain(S,E) interface changes the EXPLAIN 4770 ** Calling sqlite3_stmt_explain(S,E) might cause S to be reprepared. 4775 ** sqlite3_stmt_explain(S,E) will fail with SQLITE_ERROR if S cannot be 4782 ** began with EXPLAIN or EXPLAIN QUERY PLAN, but sqlite3_stmt_explain(S,0) 4791 ** immediately prior to calling sqlite3_stmt_explain(S,E). 4793 SQLITE_API int sqlite3_stmt_explain(sqlite3_stmt *pStmt, int eMode); [all...] |