Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 30, 2020 00:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/e3179d7ea9b4db3f620e10b5811900f2 to your computer and use it in GitHub Desktop.
Save parzibyte/e3179d7ea9b4db3f620e10b5811900f2 to your computer and use it in GitHub Desktop.
@Override
public void onCreate(SQLiteDatabase sqLiteDatabase) {
String[] tablas = {
"CREATE TABLE canciones(nombre TEXT);",
"CREATE TABLE usuarios(id INT);",
// ...
};
for (String tabla : tablas) {
sqLiteDatabase.execSQL(tabla);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment