Lines Matching refs:sqlite3_close

575 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
629 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
631 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
641 ** sqlite3_close() will leave the database connection open and return
655 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
660 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
663 SQLITE_API int sqlite3_close(sqlite3*);
3724 ** passing it to [sqlite3_close()] when it is no longer required.
6378 ** [database connection] is closed using [sqlite3_close()].
9447 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
9468 ** connection using [sqlite3_close()].
10694 ** calling [sqlite3_close()]) and a new connection is subsequently opened
16806 ** sqlite3_close().
34996 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
132333 #define sqlite3_close sqlite3_api->close
132777 sqlite3_close,
174634 /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or
174658 /* Legacy behavior (sqlite3_close() behavior) is to return
174714 ** connection. The sqlite3_close() version returns SQLITE_BUSY and
174721 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }
174729 ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and
174748 ** passed to sqlite3_close (meaning that it is a zombie). Therefore,
176960 sqlite3_close(db);
211473 sqlite3_close(db);
211673 sqlite3_close(p->dbRbu);
211674 sqlite3_close(p->dbMain);
212043 sqlite3_close(p->dbRbu);
212044 sqlite3_close(p->dbMain);
212062 sqlite3_close(dbMain);
213053 sqlite3_close(p->dbRbu);
213054 sqlite3_close(p->dbMain);
213280 ** sqlite3_close().
213610 ** prevents it from checkpointing the database from sqlite3_close(). */