no such table found in SQLite

后端 未结 2 358
滥情空心
滥情空心 2021-01-03 16:10

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         


        
相关标签:
2条回答
  • 2021-01-03 16:48

    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

    0 讨论(0)
  • 2021-01-03 16:53

    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.

    0 讨论(0)
提交回复
热议问题