Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_close

589 ** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
643 ** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors
645 ** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if
655 ** sqlite3_close() will leave the database connection open and return
669 ** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)]
674 ** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer
677 SQLITE_API int sqlite3_close(sqlite3*);
4056 ** passing it to [sqlite3_close()] when it is no longer required.
7022 ** [database connection] is closed using [sqlite3_close()].
10105 ** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
10126 ** connection using [sqlite3_close()].
11432 ** calling [sqlite3_close()]) and a new connection is subsequently opened
18515 ** sqlite3_close().
38292 ** used as an argument to sqlite3_errmsg() or sqlite3_close().
142641 #define sqlite3_close sqlite3_api->close
143097 sqlite3_close,
188358 /* EVIDENCE-OF: R-63257-11740 Calling sqlite3_close() or
188382 /* Legacy behavior (sqlite3_close() behavior) is to return
188446 ** connection. The sqlite3_close() version returns SQLITE_BUSY and
188453 SQLITE_API int sqlite3_close(sqlite3 *db){ return sqlite3Close(db,0); }
188461 ** has been a prior call to sqlite3_close(db) or sqlite3_close_v2(db)) and
188480 ** passed to sqlite3_close (meaning that it is a zombie). Therefore,
190767 sqlite3_close(db);
228602 sqlite3_close(db);
228802 sqlite3_close(p->dbRbu);
228803 sqlite3_close(p->dbMain);
229190 sqlite3_close(p->dbRbu);
229191 sqlite3_close(p->dbMain);
229209 sqlite3_close(dbMain);
230202 sqlite3_close(p->dbRbu);
230203 sqlite3_close(p->dbMain);
230430 ** sqlite3_close().
230763 ** prevents it from checkpointing the database from sqlite3_close(). */