Lines Matching refs:factory

88     // The optional factory to use when creating new Cursors.  May be null.
662 * @param factory an optional factory class that is called to instantiate a
668 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags) {
669 return openDatabase(path, factory, flags, null);
683 * @param factory an optional factory class that is called to instantiate a
691 public static SQLiteDatabase openDatabase(String path, CursorFactory factory, int flags,
693 SQLiteDatabase db = new SQLiteDatabase(path, flags, factory, errorHandler);
699 * Equivalent to openDatabase(file.getPath(), factory, CREATE_IF_NECESSARY).
701 public static SQLiteDatabase openOrCreateDatabase(File file, CursorFactory factory) {
702 return openOrCreateDatabase(file.getPath(), factory);
706 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY).
708 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory) {
709 return openDatabase(path, factory, CREATE_IF_NECESSARY, null);
713 * Equivalent to openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler).
715 public static SQLiteDatabase openOrCreateDatabase(String path, CursorFactory factory,
717 return openDatabase(path, factory, CREATE_IF_NECESSARY, errorHandler);
820 * @param factory an optional factory class that is called to instantiate a
824 public static SQLiteDatabase create(CursorFactory factory) {
827 factory, CREATE_IF_NECESSARY);
1080 * @param cursorFactory the cursor factory to use, or null for the default factory
1120 * @param cursorFactory the cursor factory to use, or null for the default factory
1277 * @param cursorFactory the cursor factory to use, or null for the default factory
1295 * @param cursorFactory the cursor factory to use, or null for the default factory