sqlite也可以是内存数据库吗?
有点困惑,我正在观看一些视频,其中有人使用 sqllite 作为内存数据库。 从 sqllite.org 网站来看,它似乎是一个真正的数据库?
两者都是吗,还是我看到的内存数据库是其他东西? (与 NUnit 一起使用)。
A bit confused, I was watching some video where some guy was using sqllite as an in-memory database. From the sqllite.org site it seems as though it is a real db?
Can it be both or is the in-memory db that I saw something else? (used with NUnit).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
阅读本文
Sqlite 是一个真正的嵌入式数据库,在很多地方都有使用(包括 iPhone 和 Firefox)API 允许您指定是否要将数据库保存在内存中。
Have a read of this
Sqlite is a real embedded DB which is used in lots and lots of places (including the iphone and firefox) the apis allow you to specify if you want to hold your db in memory.
是的,只需使用
":memory:"
作为数据库路径即可。Yes, just use
":memory:"
as the database path.是的,它可以是内存数据库,也可以是磁盘数据库。 像平常一样使用它,但使用文件名 :memory: 来阻止它写入磁盘。
Yes, it can be either an in-memory or an on-disk database. Use it as normal, but with a filename of :memory: to stop it from writing to disk.