Skip to content Skip to sidebar Skip to footer

How To Load A Disk-based Database To In-memory Database Using Sqlite In Mono?

Can I load a disk-database file (.db) to a in-memory database created by :memory: in Sqlite? I am using Mono, and Mono.Data.Sqlite is the library I am linking to. Does anyone know

Solution 1:

you should use the SQLite Backup API. here is a couple of links.

Using the SQLite Online Backup API

Online Backup API

Post a Comment for "How To Load A Disk-based Database To In-memory Database Using Sqlite In Mono?"