sqlite:如何在内存中使用

Posted

技术标签:

【中文标题】sqlite:如何在内存中使用【英文标题】:sqlite:How to use in memory 【发布时间】:2012-02-08 12:45:29 【问题描述】:

我正在尝试将我的数据存储在内存中

这是我现在拥有的

//sq lite driver
Class.forName("org.sqlite.JDBC");
//database path, if it's new data base it will be created in project folder
con = DriverManager.getConnection("jdbc:sqlite:mydb.db");

Statement stat = con.createStatement(); 

stat.executeUpdate("drop table if exists weights");

//creating table
stat.executeUpdate("create table weights(id integer,"
    + "firstName varchar(30)," + "age INT," + "sex varchar(15),"
    + "weight INT," + "height INT,"
    + "idealweight INT, primary key (id));");

现在我应该把这个语句[“:memory:”]放在哪里来将我的这个数据存储在内存中,并且数据应该一直保存到我删除它为止。

谢谢

【问题讨论】:

【参考方案1】:

试试:

con = DriverManager.getConnection("jdbc:sqlite::memory:");

【讨论】:

以上是关于sqlite:如何在内存中使用的主要内容,如果未能解决你的问题,请参考以下文章

如何使用内存数据库中的 sqlite 在 laravel 5.5 中运行单元测试

SQLite 如何变成 内存数据库

如何将 CoreData SQLite 支持的持久存储克隆到“内存中”?

AnyDac - 如何断开与内存中的 sqlite db 的连接?

如何使用命令行工具 sqlite3 浏览内存中的 SQLite 数据库

如何在使用 SQLite 作为内存数据库的 ABP 框架上集成测试接受 SQL 参数的方法?