List of usage examples for android.database.sqlite SQLiteOpenHelper subclass-usage
From source file com.contentful.vault.SqliteHelper.java
final class SqliteHelper extends SQLiteOpenHelper { private final Context context; private final SpaceHelper spaceHelper; public SqliteHelper(Context context, SpaceHelper spaceHelper) {
From source file org.fitchfamily.android.wifi_backend.database.Database.java
public class Database extends SQLiteOpenHelper { public static String ACTION_DATA_CHANGED = "org.fitchfamily.android.wifi_backend.database.DATA_CHANGED"; private static final String TAG = "WiFiBackendDB"; private static final boolean DEBUG = BuildConfig.DEBUG;
From source file com.example.shutapp.DatabaseHandler.java
/**
*
* @author Group12
*
* A class to handle the database communication.
*
From source file org.disciple.db.Abatis.java
/**
*
* @author sonix - http://www.sonix.asia
* @since JDK1.5 Android Level 3
*
*/
From source file org.mozilla.gecko.sync.repositories.android.AndroidBrowserHistoryDataExtender.java
public class AndroidBrowserHistoryDataExtender extends SQLiteOpenHelper { public static final String LOG_TAG = "SyncHistoryVisits"; // Database Specifications. protected static final String DB_NAME = "history_extension_database";
From source file com.spoiledmilk.ibikecph.util.DB.java
public class DB extends SQLiteOpenHelper { private static final int DATABASE_VERSION = 1; private static final String DATABASE_NAME = "iBikeCPHDB"; private static final String TABLE_SEARCH_HISTORY = "SearchHistory"; private static final String TABLE_FAVORITES = "Favorites"; private static final String KEY_ID = "_id";
From source file org.egov.android.data.SQLiteHelper.java
/** * This is to create database */ public class SQLiteHelper extends SQLiteOpenHelper {
From source file za.co.neilson.alarm.database.Database.java
public class Database extends SQLiteOpenHelper { static List<User> users = new LinkedList<User>(); static List<Group> groups = new LinkedList<Group>(); static Database instance = null; static SQLiteDatabase database = null;
From source file com.maxwen.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 = 1; private static final String TABLE_WALLPAPERS = "wallpapers";
From source file net.sf.fakenames.db.ScriptProvider.java
class ScriptHelper extends SQLiteOpenHelper { private final Context context; public ScriptHelper(Context context) { super(context, ScriptSchema.DB_NAME, null, ScriptSchema.DB_VERSION);