Back to project page androidcomplete.
The source code is released under:
MIT License
If you think the Android project androidcomplete 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.core.datamanagement; /* w w w . j a v a 2 s .c om*/ import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; public class LocalDatabase extends SQLiteOpenHelper{ /** * Define LocalDatabase name and version */ public static final int DATABASE_VERSION = 1; public static final String DATABASE_NAME = "Complete.db"; public LocalDatabase(Context context) { super(context, DATABASE_NAME, null, DATABASE_VERSION); // TODO Auto-generated constructor stub } /** * Create a Table in Database to hold statistics */ @Override public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { // TODO Auto-generated method stub } /** * Define Table Constants to be used in Table Creation */ /** * Custom Table Creation Function */ public boolean createTable(String tableName, String[] columnNames,String columnTypes){ return true; } }