How can a sqlite database be backed up in native C# code while the database is still online? All of the online backup api examples are in C code.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
The online backup API was added to
System.Data.Sqlite
in version 1.0.80.0 - April 1, 2012. You can create a database backup while there are other external connections like soAlso,
BackupDb.db
will be created if it doesn't already exist.