sqlite也可以是内存数据库吗?

发布于 2024-07-24 08:11:28 字数 132 浏览 6 评论 0原文

有点困惑,我正在观看一些视频,其中有人使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

青芜 2024-07-31 08:11:29

阅读本文

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.

梓梦 2024-07-31 08:11:29

是的,只需使用 ":memory:" 作为数据库路径即可。

Yes, just use ":memory:" as the database path.

染墨丶若流云 2024-07-31 08:11:29

是的,它可以是内存数据库,也可以是磁盘数据库。 像平常一样使用它,但使用文件名 :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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文