batchlight / co.yello.db.batchlight.androidsqlite / AndroidSQLiteBinder
class AndroidSQLiteBinder : Binder
The Binder implementation for SQLite on Android.
| Name | Summary |
|---|---|
| <init> | AndroidSQLiteBinder(sqLiteStatement: SQLiteStatement)The Binder implementation for SQLite on Android. |
| Name | Summary |
|---|---|
| bindBlob | fun bindBlob(position: Int, blob: ByteArray): UnitBinds a ByteArray at the given position. |
| bindDouble | fun bindDouble(position: Int, double: Double): UnitBinds a Double at the given position. |
| bindLong | fun bindLong(position: Int, long: Long): UnitBinds a Long at the given position. |
| bindNull | fun bindNull(position: Int): UnitBinds a null value at the given position. |
| bindString | fun bindString(position: Int, string: String): UnitBinds a String at the given position. |
| clear | fun clear(): UnitClears any bound values. |
| equals | fun equals(other: Any?): Boolean |
| execute | fun execute(): UnitExecutes with any bound values. |
| hashCode | fun hashCode(): Int |