Lines Matching refs:sqlite3_close
584 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
638 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
640 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
650 ** sqlite3_close() will leave the database connection open and return
664 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
669 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
672 SQLITE_API int sqlite3_close(sqlite3*);
4002 ** passing it to [sqlite3_close()] when it is no longer required.
6856 ** [database connection] is closed using [sqlite3_close()].
9909 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
9930 ** connection using [sqlite3_close()].
11214 ** calling [sqlite3_close()]) and a new connection is subsequently opened
17865 ** sqlite3_close().
37055 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
138759 #define sqlite3_close sqlite3_api->close
139207 sqlite3_close,
183848 /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or
183872 /* Legacy behavior (sqlite3_close() behavior) is to return
183936 ** connection. The sqlite3_close() version returns SQLITE_BUSY and
183943 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }
183951 ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and
183970 ** passed to sqlite3_close (meaning that it is a zombie). Therefore,
186215 sqlite3_close(db);
223920 sqlite3_close(db);
224120 sqlite3_close(p->dbRbu);
224121 sqlite3_close(p->dbMain);
224508 sqlite3_close(p->dbRbu);
224509 sqlite3_close(p->dbMain);
224527 sqlite3_close(dbMain);
225520 sqlite3_close(p->dbRbu);
225521 sqlite3_close(p->dbMain);
225748 ** sqlite3_close().
226081 ** prevents it from checkpointing the database from sqlite3_close(). */