My application creates tables like this:
public DataAccess()
{
dbcon = DependencyService.Get<ISQLite>().GetConnection();
// create the tables
dbcon.CreateTable<Category>();
dbcon.CreateTable<Settings>();
What I would like to do is to have two databases. One that holds all the user data and one that is refreshed when the application is updated.
As part of the update process I would like to add data from the new database to the existing user database.
Is it possible to open two connections to different databases and also how can I get data from one database and add it to the other? Could I for example do a SQL Select that sp[ans two databases?