Home
last modified time | relevance | path

Searched refs:cached_statements (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Modules/_sqlite/
Dmodule.c59 int cached_statements; in module_connect() local
65 …base, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statements)) in module_connect()
Dconnection.c69 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()
/external/python/cpython3/Modules/_sqlite/
Dmodule.c70 int cached_statements; in module_connect() local
79 &factory, &cached_statements, &uri)) in module_connect()
Dconnection.c88 int cached_statements = 100; in pysqlite_connection_init() local
96 &factory, &cached_statements, &uri)) in pysqlite_connection_init()
156 …sqlite_Cache*)PyObject_CallFunction((PyObject*)&pysqlite_CacheType, "Oi", self, cached_statements); in pysqlite_connection_init()
/external/python/cpython2/Lib/sqlite3/test/
Dregression.py56 con = sqlite.connect(":memory:", cached_statements=5)
/external/python/cpython3/Lib/sqlite3/test/
Dregression.py56 con = sqlite.connect(":memory:", cached_statements=5)
/external/python/cpython2/Doc/library/
Dsqlite3.rst167 …(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
/external/python/cpython3/Doc/library/
Dsqlite3.rst173 …base[, timeout, detect_types, isolation_level, check_same_thread, factory, cached_statements, uri])
215 for the connection, you can set the *cached_statements* parameter. The currently