Skip to content

Instantly share code, notes, and snippets.

@izmajlowiczl
Created April 27, 2017 07:13
Show Gist options
  • Save izmajlowiczl/7bae5426abb90f62735ade38d78bfeaa to your computer and use it in GitHub Desktop.
Save izmajlowiczl/7bae5426abb90f62735ade38d78bfeaa to your computer and use it in GitHub Desktop.
fun SQLiteDatabase.doesTableExist(tableName: String): Boolean {
val sql = "SELECT name FROM sqlite_master WHERE type='table';"
val c = rawQuery(sql, null)
while (c.moveToNext()) {
if (c.getString(0) == tableName) return true
else continue
}
return false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment