mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-05 01:37:03 +01:00
check if table exists before dropping
This commit is contained in:
parent
a6e26e5ddc
commit
be45f7fe0c
@ -67,7 +67,8 @@ public class DBHelper {
|
||||
}
|
||||
|
||||
public static void dropTable(String tableName, SQLiteDatabase db) {
|
||||
db.delete(tableName, null, null);
|
||||
String statement = "DROP TABLE IF EXISTS '" + tableName + "'";
|
||||
db.execSQL(statement);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user