I'm looking for a way to use in-memory temp databases. So I don't want it to write to disk.
Is this possible?
In-memory database possible?
-
- Devart Team
- Posts: 2420
- Joined: Wed 02 Nov 2011 09:44
Yes, in-memory database is supported by dotConnect for SQLite. To use an in-memory database, set DataSource to :memory:
Code: Select all
SQLiteConnection conn = new SQLiteConnection("DataSource=:memory:");