Back to project page improv-referee.
The source code is released under:
Copyright (C) <2011> by <Pierre-Henri Trivier> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to de...
If you think the Android project improv-referee 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 fr.pht.improv.db; //w w w . j ava 2 s . c om import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; public class ImprovDbHelper extends SQLiteOpenHelper { private static final String DB_NAME = "improv.db"; private static final int DB_VERSION = 1; public ImprovDbHelper(Context context) { // CursorFactory set to null ... ? super(context, DB_NAME, null, DB_VERSION); } @Override public void onCreate(SQLiteDatabase db) { ImprovDbTable.onCreate(db); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { ImprovDbTable.onUpgrade(db, oldVersion, newVersion); } }