forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurrent.txt
More file actions
34 lines (26 loc) · 1.39 KB
/
current.txt
File metadata and controls
34 lines (26 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Signature format: 4.0
package androidx.sqlite.db.framework {
public final class FrameworkSQLiteOpenHelperFactory implements androidx.sqlite.db.SupportSQLiteOpenHelper.Factory {
ctor public FrameworkSQLiteOpenHelperFactory();
method public androidx.sqlite.db.SupportSQLiteOpenHelper create(androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration configuration);
}
}
package androidx.sqlite.driver {
public final class AndroidSQLiteDriver implements androidx.sqlite.SQLiteDriver {
ctor public AndroidSQLiteDriver();
method public androidx.sqlite.SQLiteConnection open(String fileName);
property public boolean hasConnectionPool;
}
public final class SupportSQLiteConnection implements androidx.sqlite.SQLiteConnection {
ctor public SupportSQLiteConnection(androidx.sqlite.db.SupportSQLiteDatabase db);
method public void close();
method @InaccessibleFromKotlin public androidx.sqlite.db.SupportSQLiteDatabase getDb();
method public androidx.sqlite.SQLiteStatement prepare(String sql);
property public androidx.sqlite.db.SupportSQLiteDatabase db;
}
public final class SupportSQLiteDriver implements androidx.sqlite.SQLiteDriver {
ctor public SupportSQLiteDriver(androidx.sqlite.db.SupportSQLiteOpenHelper openHelper);
method public androidx.sqlite.driver.SupportSQLiteConnection open(String fileName);
property public boolean hasConnectionPool;
}
}