DeteMin
2020-01-15 7584a724d8ff312cae1ae57c6918df10ea72b686
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.amitshekhar.debug.sqlite;
 
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
 
import com.amitshekhar.sqlite.DBFactory;
import com.amitshekhar.sqlite.SQLiteDB;
 
public class DebugDBFactory implements DBFactory {
    public SQLiteDB create(Context context, String path, String password) {
        return new DebugSQLiteDB(SQLiteDatabase.openOrCreateDatabase(path, null));
    }
}