<@U34SU7CCS> With sqlite, it's just a matter of ch...
# tornadofx
r
@nakamin With sqlite, it's just a matter of changing where the database is stored.
Copy code
DriverManager.getConnection("jdbc:sqlite::memory:")
:memory:
is a keyword for creating an in memory database. Change it to the filename of the database if you want it persisted:
Copy code
DriverManager.getConnection("jdbc:sqlite:storage.db")