|
private boolean checkIfColumnExists(SQLiteDatabase database, String table, String column) {
|
|
private boolean checkIfColumnExists(SQLiteDatabase database, String table, String column) {
|
|
Cursor cursor = database.rawQuery("SELECT * FROM " + table + " LIMIT 0", null);
|
|
Cursor cursor = database.rawQuery("SELECT * FROM " + table + " LIMIT 0", null);
|