We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e32765 commit a6dbea0Copy full SHA for a6dbea0
android-database-sqlcipher/src/main/java/net/sqlcipher/database/BindingsRecorder.java
@@ -19,6 +19,15 @@
19
import android.util.SparseArray;
20
import androidx.sqlite.db.SupportSQLiteProgram;
21
22
+/*
23
+ This class is a concrete implementation of SupportSQLiteProgram,
24
+ for use in supporting bind arguments for the SQLiteDatabase query()
25
+ methods that take a SupportSQLiteQuery parameter.
26
+
27
+ In Google's FrameworkSQLiteDatabase implementation of those query()
28
+ methods, it uses FrameworkSQLiteProgram, which has the same basic implementation
29
+ as does BindingsRecorder.
30
+ */
31
class BindingsRecorder implements SupportSQLiteProgram {
32
private SparseArray<Object> bindings=new SparseArray<>();
33
0 commit comments