用于具有多个数据库的单线程模式的sqlite多线程

Sqlite文档说明了多线程

1. Single-thread. In this mode, all mutexes are disabled and SQLite is unsafe to use in more than a single thread at once.

2. Multi-thread. In this mode, SQLite can be safely used by multiple threads provided that no single database connection is used simultaneously in two or more threads.

3. Serialized. In serialized mode, SQLite can be safely used by multiple threads with no restriction.

我有一个关于1(单线程模式)的问题.这样说吗?

>它不允许在两个线程中使用sqlite3_open.
>它不允许使用sqlite3_open在两个中打开同一个数据库
thread.But使用sqlite3_open在两个线程中打开两个不同的数据库即可.

最佳答案 选项1.如果您需要选项2,则需要使用多线程模式,正如文本所述.在单线程模式下,sqlite函数的全局状态将不受保护,并且在多个线程中同时使用它们将是一个问题.

使用多线程模式,您可以在同一应用程序中的多个线程中使用sqlite,但您可能不会同时在线程之间共享单个连接.

点赞