Back to project page simple-sqlite.
The source code is released under:
Apache License
If you think the Android project simple-sqlite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.aldobo.simple.sqlite; /* w ww.java 2 s. c o m*/ import android.database.sqlite.SQLiteDatabase; public interface SQLiteOpenHelperExtendable { public void onCreate(SQLiteDatabase db); public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion); }