Searched refs:cached_statements (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Modules/_sqlite/ |
D | module.c | 76 int cached_statements; in module_connect() local 83 &factory, &cached_statements, &uri)) in module_connect()
|
D | connection.c | 76 int cached_statements = 100; in pysqlite_connection_init() local 84 &factory, &cached_statements, &uri)) in pysqlite_connection_init() 140 …ysqlite_Cache*)PyObject_CallFunction((PyObject*)pysqlite_CacheType, "Oi", self, cached_statements); in pysqlite_connection_init()
|
/third_party/python/Lib/sqlite3/test/ |
D | regression.py | 56 con = sqlite.connect(":memory:", cached_statements=5)
|
/third_party/python/Doc/library/ |
D | sqlite3.rst | 211 …base[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri]) 255 for the connection, you can set the *cached_statements* parameter. The currently
|