Back to project page sloop-sql.
The source code is released under:
SloopSQL is released into the Public Domain. There are no restrictions on how you may use this code, and there is no warranty or guarantee of fitness for anything. USE AT YOUR OWN RISK (and enjoy).
If you think the Android project sloop-sql 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.megginson.sloopsql; //ww w . j a v a2s . co m import android.database.sqlite.SQLiteOpenHelper; import android.database.sqlite.SQLiteDatabase; import android.content.Context; public class DatabaseHandler extends SQLiteOpenHelper { public DatabaseHandler(Context context) { super(context, "SloopSQL", null, 1); } @Override public void onCreate(SQLiteDatabase database) { } @Override public void onUpgrade(SQLiteDatabase database, int oldVersion, int newVersion) { } }