Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_close

439 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
489 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
491 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
496 ** statements or unfinished sqlite3_backup objects then sqlite3_close()
519 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
524 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
527 SQLITE_API int SQLITE_STDCALL sqlite3_close(sqlite3*);
2988 ** passing it to [sqlite3_close()] when it is no longer required.
4973 ** [database connection] is closed using [sqlite3_close()].
7465 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
7486 ** connection using [sqlite3_close()].
11545 ** sqlite3_close().
25757 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
104375 #define sqlite3_close sqlite3_api->close
104733 sqlite3_close,
131809 /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or
131830 /* Legacy behavior (sqlite3_close() behavior) is to return
131856 ** connection. The sqlite3_close() version returns SQLITE_BUSY and
131863 SQLITE_API int SQLITE_STDCALL sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }
131871 ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and
131890 ** passed to sqlite3_close (meaning that it is a zombie). Therefore,
133769 sqlite3_close(db);
160939 sqlite3_close(db);
161263 sqlite3_close(p->dbMain);
161264 sqlite3_close(p->dbRbu);
162025 sqlite3_close(p->dbMain);
162026 sqlite3_close(p->dbRbu);
162123 ** sqlite3_close().
162305 ** prevents it from checkpointing the database from sqlite3_close(). */