Lines Matching refs:sqlite3_close

571 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
625 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
627 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
637 ** sqlite3_close() will leave the database connection open and return
651 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
656 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
659 SQLITE_API int sqlite3_close(sqlite3*);
3679 ** passing it to [sqlite3_close()] when it is no longer required.
6295 ** [database connection] is closed using [sqlite3_close()].
9254 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
9275 ** connection using [sqlite3_close()].
10223 ** calling [sqlite3_close()]) and a new connection is subsequently opened
16263 ** sqlite3_close().
33426 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
127703 #define sqlite3_close sqlite3_api->close
128127 sqlite3_close,
167792 /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or
167816 /* Legacy behavior (sqlite3_close() behavior) is to return
167872 ** connection. The sqlite3_close() version returns SQLITE_BUSY and
167879 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }
167887 ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and
167906 ** passed to sqlite3_close (meaning that it is a zombie). Therefore,
170051 sqlite3_close(db);
204444 sqlite3_close(db);
204644 sqlite3_close(p->dbRbu);
204645 sqlite3_close(p->dbMain);
205014 sqlite3_close(p->dbRbu);
205015 sqlite3_close(p->dbMain);
205058 sqlite3_close(dbMain);
206048 sqlite3_close(p->dbRbu);
206049 sqlite3_close(p->dbMain);
206227 ** sqlite3_close().
206557 ** prevents it from checkpointing the database from sqlite3_close(). */