Sqllite implementation

This commit is contained in:
Krish 2023-07-28 15:22:03 +05:30
parent 76840c4993
commit aadfa74f84

View File

@ -14,7 +14,7 @@ class DBHelper(context: Context, factory: SQLiteDatabase.CursorFactory?) :
// below is a sqlite query, where column names
// along with their data types is given
val query = ("CREATE TABLE " + TABLE_NAME + " ("
+ ID_COL + " INTEGER PRIMARY KEY, " +
+ ID_COL + " INTEGER PRIMARY KEY," +
EMAIL_COl + " TEXT," +
USERNAME_COl + " TEXT," +
PHONE_COl + " TEXT," +