使用 sqlite 在 ram 中创建表/行?

发布于 2024-08-15 01:02:33 字数 192 浏览 2 评论 0原文

我记得有一次我在网页上使用了临时数据。我使用 php 和 mysql 创建一个表来存储访问者的 ip 和他们请求的端口。我不在乎它们持续了多长时间,因为 10 分钟或一个小时后,数据将不再相关。我不记得我是怎么做到的,而是使用 sqlite...

我如何使用 sqlite 为仅在有限时间(几分钟)内存储在 ram 中的行创建一个表?使用 C# .NET

I remember once i had temporary data used on a webpage. I used php and mysql to create a table that stored visitors ips and the port they requested. I didnt care how long they lasted because after 10mins or an hour the data would no longer be relevant. I cant remember how i did it but using sqlite instead...

How do i create a table for rows meant to be stored in ram only for a limited amount of time (a few minutes) using sqlite? Using C# .NET

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

无力看清 2024-08-22 01:02:33

您可以使用以下连接字符串:Data Source=:memory:;Version=3;New=True。值得注意的是,只要连接保持打开状态,内存数据库就存在。

You could use the following connection string: Data Source=:memory:;Version=3;New=True. It is important to note that a memory database exists as long as the connection remains open.

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