Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sqlite 交易有什么限制吗?例如在一个事务中插入大量数据会导致问题吗?
不,您可以根据需要(只要您有磁盘空间)和您喜欢(只要没有其他人想要访问数据库)进行事务。
首先我想告诉你——SQLITE 不是一个成熟的数据库。它可以替换 file.open() 并将其视为将结构化数据写入本地文件。
不建议使用更大的事务加载大数据(迁移)。如果需要交易,最好使用较小的数据集。事务可以锁定数据库状态并使其他查询阻塞。