this is my error in console :
11-29 19:06:50.295: E/AndroidRuntime(333): android.database.sqlite.SQLiteException: table usuarios has no column named email: ,
You are missing a space in your CREATE TABLE statement:
CREATE TABLE
NOMBRE_CORREO + "TEXT NOT NULL);");
should be
NOMBRE_CORREO + " TEXT NOT NULL);");