I have the following dilemma:
I am putting together an app where I perform a synchronization between a MySqle database and SQLite using a Webservice.
My database is already available in MySql, and in my app during my splash screen I need to do a check: If there is any database already synchronized in the system the user is redirected to the login screen. If not, it should be redirected to the screen where it must inform the data to perform the synchronization.
If it was a check in a table I would have to inform the database name to my SQLiteOpenHelper and thus perform the operation on a certain table, but how do I do this in the database itself?