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 uk.org.rivernile.edinburghbustracker.android.SettingsDatabase.java

/**
 * This class deals with the database interaction with the settings database.
 * Currently the settings database only holds information for favourite bus
 * stops.
 *
 * @author Niall Scott

From source file com.mk4droid.IMC_Services.DatabaseHandler.java

/**
 * Handles all operations for storing locally a subset of the remote MySQL of IMC to local SQLite
 * 
 * @copyright   Copyright (C) 2012 - 2013 Information Technology Institute ITI-CERTH. All rights reserved.
 * @license     GNU Affero General Public License version 3 or later; see LICENSE.txt
 * @author      Dimitrios Ververidis for the Multimedia Group (http://mklab.iti.gr). 

From source file mobisocial.bento.anyshare.util.DBHelper.java

/**
 * Utility methods for managing the database.
 *
 */
public class DBHelper extends SQLiteOpenHelper {
    public static final String TAG = "DBHelper";

From source file com.money.manager.ex.database.MmxOpenHelper.java

/**
 * Actual helper class for accessing an SQLite database.
 */
public class MmxOpenHelper extends SQLiteOpenHelper {

    /**

From source file com.cryart.sabbathschool.util.SSCore.java

public class SSCore extends SQLiteOpenHelper {
    private static final int DATABASE_VERSION = 1;
    private static final String DATABASE_NAME = "SabbathSchool.db";

    private static SSCore ssInstance = null;
    private static String ssTodayDate = null;

From source file com.mobile.system.db.abatis.AbatisService.java

/**
 *
 *
 */
public class AbatisService extends SQLiteOpenHelper {

From source file project.cs.lisa.database.IODatabase.java

/**
 * The database that contains the data corresponding to an information object
 * that is stored in the device.
 * 
 * @author Harold Martinez
 * @author Kim-Anh Tran

From source file project.cs.lisa.util.database.IODatabase.java

/**
 * The database that contains the data corresponding to an information object
 * that is stored in the device.
 * 
 * @author Harold Martinez
 * @author Kim-Anh Tran

From source file com.eTilbudsavis.etasdk.DbHelper.java

public class DbHelper extends SQLiteOpenHelper {

    public static final String TAG = Eta.TAG_PREFIX + DbHelper.class.getSimpleName();

    private static final String DB_NAME = "shoppinglist.db";
    private static final int DB_VERSION = 5;

From source file org.mitre.svmp.common.DatabaseHandler.java

/**
 * @author Joe Portner
 */
public class DatabaseHandler extends SQLiteOpenHelper {
    private static final String TAG = DatabaseHandler.class.getName();