sqlite 可以从单个文件加载单个表吗?
我听说 SQLite 可以做到这一点(以避免大流量场景中的同步问题),这是真的吗?如果是这样,我将如何使用 PHP 中的 PDO 来做到这一点?
I've heard that SQLite can do this (to avoid synchronicity issues in heavy traffic scenarios) is this true? If so how would I do this with PDO in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否正在寻找 ATTACH 和 DETACH sqlite 命令?您可以通过对任何 SQLite PDO 对象的查询来调用它们。
这些命令允许您将单独的数据库文件附加到当前会话。一个例子是:
如果没有重复的表,您可以通过名称引用位于附加数据库中的表(例如:
SELECT * FROM条目
)。如果存在冲突,则需要使用数据库别名对它们进行命名(例如:SELECT * FROM BlogEntries.entries
)参考:SQLite 手册
Would you be looking for the ATTACH and DETACH sqlite commands? You can call these with a query to any SQLite PDO object.
The commands allow you to attach a separate database file to the current session. An example would be:
You can then refer to the tables located in the attached database by their name (eg:
SELECT * FROM entries
) if there is no duplicate tables. If there is a conflict then they need to be namespaced with the database alias (eg:SELECT * FROM BlogEntries.entries
)Reference: SQLite Manual
您可以在内存中打开一个数据库(我相信 PDO 的 DSN 是 sqlite:memory:)并附加不同的数据库。
You can open a DB in memory (I believe the DSN for PDO is sqlite:memory:) and attach the different databases.