Hello with all I have an application that works with a database, I want to execute a query in the base like the one that I leave later, the detail is that this method (query) should only be executed at 7:30 of the Tomorrow every day someone can help me with this problem.
Thank you in advance for the help
public void borrarRegistros(){
String consulta="delete from registros"; //borrar todos los registros de la tabla registros
MainActivity.adapter.openSqliteDataBaseInDevice();
try {
Cursor c=MainActivity.adapter.get_sqliteDB().rawQuery(consulta,null);
c.moveToFirst();
c.close();
}catch (Exception ex){
}
MainActivity.adapter.closeSqliteDataBaseInDevice();
}