Java Code Examples for android.database.sqlite.SQLiteDatabase#CursorFactory
The following examples show how to use
android.database.sqlite.SQLiteDatabase#CursorFactory .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: android_maplib File: DatabaseHelper.java License: GNU Lesser General Public License v3.0 | 5 votes |
public DatabaseHelper( Context context, File dbFullName, SQLiteDatabase.CursorFactory factory, int version) { super( new DatabaseContext(context, dbFullName.getParentFile()), dbFullName.getName(), factory, version); }
Example 2
Source Project: android_maplib File: DatabaseContext.java License: GNU Lesser General Public License v3.0 | 5 votes |
@Override public SQLiteDatabase openOrCreateDatabase( String name, int mode, SQLiteDatabase.CursorFactory factory, DatabaseErrorHandler errorHandler) { return SQLiteDatabase.openOrCreateDatabase( getDatabasePath(name).getAbsolutePath(), factory, errorHandler); }
Example 3
Source Project: android-app File: WallabagDbOpenHelper.java License: GNU General Public License v3.0 | 4 votes |
WallabagDbOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory) { super(context, name, factory); this.context = context; }
Example 4
Source Project: BlueBoard File: OkDatabaseHelp.java License: Apache License 2.0 | 4 votes |
private OkDatabaseHelp(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); }
Example 5
Source Project: Focus File: DatabaseHelper.java License: GNU General Public License v3.0 | 4 votes |
public DatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); _context = context; }
Example 6
Source Project: Leisure File: DatabaseHelper.java License: GNU Lesser General Public License v3.0 | 4 votes |
private DatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); }
Example 7
Source Project: ncalc File: DatabaseHelper.java License: GNU General Public License v3.0 | 4 votes |
public DatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); }
Example 8
Source Project: a File: DbHelper.java License: GNU General Public License v3.0 | 4 votes |
DaoOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory) { super(context, name, factory); }
Example 9
Source Project: VyAPI File: ContactDBHandler.java License: MIT License | 4 votes |
public ContactDBHandler(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, DATABASE_NAME, factory, version); }
Example 10
Source Project: kcanotify File: KcaPacketLogger.java License: GNU General Public License v3.0 | 4 votes |
public KcaPacketLogger(Context context, SQLiteDatabase.CursorFactory factory, int version) { super(context, packetlog_db_name, factory, version); }
Example 11
Source Project: 9-project-layout File: AndroidContextMock.java License: Apache License 2.0 | 4 votes |
@Override public SQLiteDatabase openOrCreateDatabase(String s, int i, SQLiteDatabase.CursorFactory cursorFactory, DatabaseErrorHandler databaseErrorHandler) { return null; }
Example 12
Source Project: Storm File: RawOpenHelper.java License: Apache License 2.0 | 4 votes |
public RawOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); }
Example 13
Source Project: privacy-friendly-qr-scanner File: DBHandler.java License: GNU General Public License v3.0 | 4 votes |
public DBHandler(Context context, SQLiteDatabase.CursorFactory factory) { super(context, DATABASE_NAME, factory, DATABASE_VERSION); }
Example 14
Source Project: SoldierWeather File: SoldierWeatherOpenHelper.java License: Apache License 2.0 | 4 votes |
public SoldierWeatherOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); }
Example 15
Source Project: HaoReader File: DbHelper.java License: GNU General Public License v3.0 | 4 votes |
DaoOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory) { super(context, name, factory); }
Example 16
Source Project: Expert-Android-Programming File: DaoMaster.java License: MIT License | 4 votes |
public DevOpenHelper(Context context, String name, SQLiteDatabase.CursorFactory factory) { super(context, name, factory); }
Example 17
Source Project: 9-project-layout File: AndroidContextMock.java License: Apache License 2.0 | 4 votes |
@Override public SQLiteDatabase openOrCreateDatabase(String s, int i, SQLiteDatabase.CursorFactory cursorFactory) { return null; }
Example 18
Source Project: 920-text-editor-v2 File: CrashDbHelper.java License: Apache License 2.0 | 4 votes |
public CrashDbHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { this(context, name, factory, version, null); }
Example 19
Source Project: Focus File: DatabaseHelper.java License: GNU General Public License v3.0 | 4 votes |
public DatabaseHelper(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, name, factory, version); _context = context; }
Example 20
Source Project: CameraBlur File: Dbhandler.java License: Apache License 2.0 | 2 votes |
public Dbhandler(Context context, String name, SQLiteDatabase.CursorFactory factory, int version) { super(context, DATABASE_NAME, factory, DATABASE_VERSION); }