用法:
sqlite3.threadsafety
DB-API 所需的整数常量,说明
sqlite3
模块支持的线程安全级别。当前 hard-coded 到1
,意思是“Threads may share the module, but not connections.”
但是,这可能并不总是正确的。您可以使用以下查询检查底层 SQLite 库的编译时线程模式:import sqlite3 con = sqlite3.connect(":memory:") con.execute(""" select * from pragma_compile_options where compile_options like 'THREADSAFE=%' """).fetchall()
请注意,SQLITE_THREADSAFE levels 与 DB-API 2.0
threadsafety
级别不匹配。
相关用法
- Python sqlite3.Connection.text_factory用法及代码示例
- Python sqlite3.Connection.enable_load_extension用法及代码示例
- Python sqlite3.Connection.iterdump用法及代码示例
- Python sqlite3.Cursor.executescript用法及代码示例
- Python sqlite3.Connection.create_collation用法及代码示例
- Python sqlite3.Connection.row_factory用法及代码示例
- Python sqlite3.complete_statement用法及代码示例
- Python sqlite3.Connection.create_function用法及代码示例
- Python sqlite3.Connection.create_aggregate用法及代码示例
- Python sqlite3.Cursor.connection用法及代码示例
- Python sqlite3.Cursor.executemany用法及代码示例
- Python sqlite3.Connection.backup用法及代码示例
- Python sqlite3.connect用法及代码示例
- Python math sqrt()用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python scipy.signal.windows.tukey用法及代码示例
- Python scipy.stats.mood用法及代码示例
- Python str.isidentifier用法及代码示例
- Python sklearn.metrics.fbeta_score用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 sqlite3.threadsafety。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。