SQLite Forum

Mono.Data.Sqlite In-Memory Shared Database
Login
Hello all,
I apologize for having to post and take up your time with this question, but I am at my wits end. I am attempting to create an in-memory shared database with Mono.Data.Sqlite and it just isn't working. 

I've followed all the guidelines here:
https://www.sqlite.org/inmemorydb.html to no avail.

I've tried:
connectionString = "Data Source=InMemorySample88;Mode=Memory;Cache=Shared";

and 

"ATTACH DATABASE URI=file:memdb1?mode=memory&cache=shared AS aux1;";

No matter what I do the database is getting created on the local hard drive and not in memory.

Can anyone tell me the proper connection string to use?

Thank you so much,
John