List of usage examples for android.database.sqlite SQLiteOpenHelper subclass-usage
From source file com.liferay.alerts.database.DatabaseHelper.java
/** * @author Silvio Santos * @author Bruno Farache */ public class DatabaseHelper extends SQLiteOpenHelper {
From source file net.willwebberley.gowertides.utils.WeatherDatabase.java
public class WeatherDatabase extends SQLiteOpenHelper { // Version 2: added 'surf' table // Version 3: added 'location' column to 'surf' table private static final int DATABASE_VERSION = 3; private static final String DATABASE_NAME = "weather";
From source file com.adguard.android.db.DbHelper.java
/** * Helper class working with local database */ public class DbHelper extends SQLiteOpenHelper { private static final Logger LOG = LoggerFactory.getLogger(DbHelper.class);
From source file io.github.tjg1.nori.database.APISettingsDatabase.java
/** Utility class providing access to the SQLite API endpoint settings database. */ public class APISettingsDatabase extends SQLiteOpenHelper { //region Broadcast IDs /** ID of the Broadcast sent when data in the database changes. */ public static final String BROADCAST_UPDATE = "io.github.tjg1.nori.database.APISettingsDatabase.update";
From source file com.clutch.ClutchStats.java
public class ClutchStats extends SQLiteOpenHelper { private static final String TAG = "ClutchStats"; private static final String DATABASE_NAME = "clutch.db"; private static final int DATABASE_VERSION = 1; public class StatRow {
From source file com.citrus.sdk.database.DBHandler.java
public class DBHandler extends SQLiteOpenHelper { public static final String DB_NAME = "USER_DETAILS"; private static final int DB_VERSION = 1;
From source file com.github.michalbednarski.intentslab.providerlab.proxy.ProxyProviderDatabase.java
/** * Created by mb on 10.09.13. */ class ProxyProviderDatabase extends SQLiteOpenHelper { private static final int DB_VERSION = 1;
From source file com.example.android.touroflondon.data.TourDbHelper.java
/** * A database helper for tour data. * This class encapsulates access to an underlying SQLite database. */ public class TourDbHelper extends SQLiteOpenHelper {
From source file net.sf.sprockets.database.sqlite.DbOpenHelper.java
/**
* SQLiteOpenHelper that executes raw resource SQL scripts to create and upgrade the database. By
* default, the {@code R.raw.create_tables} and {@code R.raw.upgrade_tables_v}<b>{@code X}</b>
* resources will be used, where <b>{@code X}</b> is the version of the database that is being
* upgraded. You can also specify custom raw resource names with the overloaded constructors.
* <p>
From source file it.ms.theing.loquitur.functions.Storage.java
/**
* This is a special open scheme database.
* it uses a table with indexes and 3 fields.
* The "genre" is the basic scheme, for example 'place', 'date' et cetera .
* The key is the search key
* The value is the value associated to the key