Is it possible to open a SQLiteConnection on a binary stream without first saving it to disk? Surely there’s a way to ‘trick’ the connection into thinking the stream is a file. I mean, internally that’s what it’s doing anyway, right?
Is it possible to open a SQLiteConnection on a binary stream without first saving
Share
Assuming you’re talking about
System.Data.SQLitefrom http://sqlite.phxsoftware.com/), then you can set the file name on your connection string to:memory:and it should create an in-memory database.