使用 sqlite 在 ram 中创建表/行?
我记得有一次我在网页上使用了临时数据。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下连接字符串:
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.