Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Last active April 17, 2019 04:44
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/dce4a365c1177adf5e08638f12bb49c5 to your computer and use it in GitHub Desktop.
Save parzibyte/dce4a365c1177adf5e08638f12bb49c5 to your computer and use it in GitHub Desktop.
package me.parzibyte.agenda;
public class Utilerias {
public static final String TABLA_PERSONA = "Persona";
public static final String NOMBRE_BD = "agenda";
public static final String CAMPO_ID = "id";
public static final String CAMPO_NOMBRE = "nombre";
public static final String CAMPO_TELEFONO = "telefono";
public static final String CREAR_TABLA_PERSONA = "create table "
+ TABLA_PERSONA
+ " (" + CAMPO_ID + " INTEGER, "
+ CAMPO_NOMBRE + " TEXT, " + CAMPO_TELEFONO + " TEXT)";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment