CREACION BASE DATOS PROYECTO HOTEL

 


package com.example.hotel;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;


import androidx.annotation.Nullable;

import com.example.hotel.Utilidades.utilidades;

public class Conexionbd extends SQLiteOpenHelper {
public Conexionbd(@Nullable Context context,@Nullable String name,@Nullable SQLiteDatabase.CursorFactory factory,int version){
super(context,name,factory,version);
}
@Override
public void onCreate(SQLiteDatabase BDHotel) {
BDHotel.execSQL(utilidades.CrearTblReserva);//**
BDHotel.execSQL(utilidades.CrearTblRegistro);//***
}

@Override
public void onUpgrade(SQLiteDatabase BDHotel, int i, int i1) {

//se le indica que si la tabla existe la borre y cree una nueva
BDHotel.execSQL("DROP TABLE IF EXISTS "+ utilidades.tblReserva);
BDHotel.execSQL("DROP TABLE IF EXISTS "+ utilidades.tblRegistro);


onCreate(BDHotel);

}
}

Comentarios

Entradas populares