Example usage for android.database.sqlite SQLiteOpenHelper subclass-usage

List of usage examples for android.database.sqlite SQLiteOpenHelper subclass-usage

Introduction

In this page you can find the example usage for android.database.sqlite SQLiteOpenHelper subclass-usage.

Usage

From source file org.jsharkey.oilcan.ScriptDatabase.java

public class ScriptDatabase extends SQLiteOpenHelper {

    public final static String TAG = ScriptDatabase.class.toString();

    public final static String DB_NAME = "scripts";
    public final static int DB_VERSION = 3;

From source file github.popeen.dsub.util.SongDBHandler.java

public class SongDBHandler extends SQLiteOpenHelper {
    private static final String TAG = SongDBHandler.class.getSimpleName();
    private static SongDBHandler dbHandler;

    private static final int DATABASE_VERSION = 2;
    public static final String DATABASE_NAME = "SongsDB";

From source file com.manning.androidhacks.hack042.db.DatabaseHelper.java

public class DatabaseHelper extends SQLiteOpenHelper {
    public static final String DATABASE_NAME = "pois.db";
    private static final int DATABASE_VERSION = 1;
    private Context mContext;

    static {

From source file uk.ac.horizon.ubihelper.service.PeersOpenHelper.java

/** 
 * @author cmg
 *
 */
public class PeersOpenHelper extends SQLiteOpenHelper {
    private static final int DATABASE_VERSION = 1;

From source file be.benvd.mvforandroid.data.DatabaseHelper.java

public class DatabaseHelper extends SQLiteOpenHelper {

    private static final String DATABASE_NAME = "mvforandroid.db";
    private static final int SCHEMA_VERSION = 2;

    public final Usage usage;

From source file heartware.com.heartware_master.DBAdapter.java

public class DBAdapter extends SQLiteOpenHelper {
    private static final String TAG = DBAdapter.class.getSimpleName();
    private static final String DB_Name = "Heartware";
    private static final String PROFILES_TABLE = "profiles";
    private static final String MEETUPS_TABLE = "meetups";
    // profiles table data

From source file com.xengar.android.englishverbs.data.VerbDBHelper.java

/**
 * Database helper for Verbs app. Manages database creation and version management.
 */
public class VerbDBHelper extends SQLiteOpenHelper {

    public static final String LOG_TAG = VerbDBHelper.class.getSimpleName();

From source file com.dm.wallpaper.board.databases.Database.java

public class Database extends SQLiteOpenHelper {

    private static final String DATABASE_NAME = "wallpaper_board_database";
    private static final int DATABASE_VERSION = 2;

    private static final String TABLE_WALLPAPERS = "wallpapers";

From source file tritop.android.naturalselectionnews.DBHelper.java

public class DBHelper extends SQLiteOpenHelper implements IGLOBALS {

    public static final String DATABASE_NAME = "tsa_stats.db";
    private static final int DATABASE_VERSION = 1;

    public static final String WAR_STATS_DATA_DATE = "date";

From source file com.shalzz.attendance.DatabaseHandler.java

/**
 * Helper Class for SQLite database
 * @author shalzz
 *
 */
@Singleton