Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够往返byte[]于内存中 SQLite 数据库的表示。我现在知道的唯一解决方案是使用SQLiteConnection.BackupDatabase方法,它可以将活动的内存数据库复制到磁盘上的另一个数据库。然后我可以使用 加载该数据库File.ReadAllBytes,但我发现这种方法对我的需求非常低效。
byte[]
SQLiteConnection.BackupDatabase
File.ReadAllBytes