Copy SQLite Database

Consider a C # application that uses a SQLite database. I would like the instance of my application (application # 1) to be able to export the SQLite database to a file, and this file could then be imported and added to another instance of the SQLite database of application 2. The databases will be formatted the same, same rows / columns, therefore this should not be a problem.

Is there an easy way to do this? I browsed the wrapper and the Internet, but I can not find anything useful. Any help is much appreciated, as always.

+3
source share
1 answer

SQLite , , , SQLite (.db3 ) . , /, .

+2

Source: https://habr.com/ru/post/1773541/


All Articles