
storm.db.DatabaseModule Maven / Gradle / Ivy
The newest version!
package storm.db;
import android.database.sqlite.SQLiteDatabase;
/**
* Created by Dimitry Ivanov on 19.09.2015.
*/
public interface DatabaseModule {
void onCreate(SQLiteDatabase db);
void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion);
void onOpen(SQLiteDatabase db);
void onConfigure(SQLiteDatabase db);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy