Searched refs:cached_statements (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/external/python/cpython2/Modules/_sqlite/ |
D | module.c | 59 int cached_statements; in module_connect() local 65 …base, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements)) in module_connect()
|
D | connection.c | 69 int cached_statements = 100; in pysqlite_connection_init() local 78 …base, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements)) in pysqlite_connection_init() 161 …sqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements); in pysqlite_connection_init()
|
/aosp_15_r20/external/python/cpython2/Lib/sqlite3/test/ |
D | regression.py | 56 con = sqlite.connect(":memory:", cached_statements=5)
|
/aosp_15_r20/external/python/cpython3/Lib/test/test_sqlite3/ |
D | test_regression.py | 60 con = sqlite.connect(":memory:", cached_statements=5)
|
/aosp_15_r20/external/python/cpython2/Doc/library/ |
D | sqlite3.rst | 167 …(database[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements]) 200 for the connection, you can set the *cached_statements* parameter. The currently
|
/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | sqlite3.rst | 261 factory=sqlite3.Connection, cached_statements=128, \ 314 :param int cached_statements:
|