im having a problem trying to establish a database in android, everytime i log in, the log cat says that no such table.
public class DatabaseOnline extends S
Is this the first time the database is being created? try changing
private static final int DATABASE_VERSION = 1;
to
private static final int DATABASE_VERSION = 2;
That would cause the Table to be created and should sort out the issue
If you make changes to your database then clearing the cache & clearing the data from your device (settings->Apps->your App) will also solve this problem. I have tried it & its working.