· 6 years ago · Mar 10, 2019, 07:30 PM
1public static final String DATABASE_NAME = "logindata.db";
2public static final String TABLE_NAME = "logindata";
3
4// ...
5
6String sqlDataStore = "create table if not exists " +
7TABLE_NAME + "...
8
9// replace other places where you use DATABASE_NAME too