Lines Matching defs:mode
109 Enable or disable shared cache mode for the calling thread.
113 If shared cache must be used, open the database in URI mode using
542 /* Convert SQLite default threading mode (as set by the compile-time constant
548 int mode = sqlite3_threadsafe();
549 switch (mode) {
550 case 0: // Single-thread mode; threads may not share the module.
552 case 1: // Serialized mode; threads may share the module,
554 case 2: // Multi-thread mode; threads may share the module, but not
558 "Unable to interpret SQLite threadsafety mode. Got %d, "
559 "expected 0, 1, or 2", mode);