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 DictionaryDatabase.java

public class DictionaryDatabase extends SQLiteOpenHelper {

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

    private static final String TABLE_DICTIONARY = "dictionary";

From source file DictionaryDatabase.java

public class DictionaryDatabase extends SQLiteOpenHelper {

    private static final String DATABASE_NAME = "dictionary.db";
    private static final String TABLE_DICTIONARY = "dictionary";

    private static final String FIELD_WORD = "word";

From source file net.nordist.lloydproof.CorrectionStorage.java

public class CorrectionStorage extends SQLiteOpenHelper {
    private static final String TAG = "CorrectionStorage";
    private static final String TABLE_NAME = "corrections";
    private static final String DATABASE_NAME = "corrections.db";
    private static final int DATABASE_VERSION = 1;

From source file yong.dealer.shopping.data.ShoppingDbHelper.java

/**
 * Manages a local database for weather data.
 */
public class ShoppingDbHelper extends SQLiteOpenHelper {

    // If you change the database schema, you must increment the database version.

From source file com.seneca.android.senfitbeta.DbHelper.java

/**
 * Created by dance on 4/4/2017.
 */

public class DbHelper extends SQLiteOpenHelper {

From source file com.alchemiasoft.common.content.BookDBOpenHelper.java

/**
 * SQLiteOpenHelper that creates the SQLite database for the Book application.
 * <p/>
 * Created by Simone Casagranda on 20/12/14.
 */
public class BookDBOpenHelper extends SQLiteOpenHelper {

From source file com.cuddlesoft.nori.database.APISettingsDatabase.java

/** Utility class providing access to the SQLite API endpoint settings database. */
public class APISettingsDatabase extends SQLiteOpenHelper {
    /** ID of the Broadcast sent when data in the database changes. */
    public static final String BROADCAST_UPDATE = "com.cuddlesoft.nori.database.APISettingsDatabase.update";
    /** Filename of the underlying SQLite database. */
    private static final String DATABASE_NAME = "api_settings.db";

From source file com.cloudmine.api.db.RequestDBOpenHelper.java

/**
 * Open Helper for requests that must eventually be synced. Requests can either have their JSON set explicitly, or set
 * to an object id that will be loaded when the request is run.
 *
 * <br>
 * Copyright CloudMine, Inc. All rights reserved<br>

From source file org.addhen.birudo.data.database.BaseDatabseHelper.java

public abstract class BaseDatabseHelper extends SQLiteOpenHelper {

    private static final String DATABASE_NAME = "birudogo-app-db.db";

    private static final int DATABASE_VERSION = 1;

From source file com.example.google.touroflondon.data.TourDbHelper.java

/**
 * A database helper for tour data. This class encapsulates access to an
 * underlying SQLite database.
 */
public class TourDbHelper extends SQLiteOpenHelper {