batchlight / co.yello.db.batchlight / Binder
interface Binder
Provides way to bind values to any DB or ORM.
| Name | Summary |
|---|---|
| bindBlob | abstract fun bindBlob(position: Int, blob: ByteArray): UnitBinds a ByteArray at the given position. |
| bindDouble | abstract fun bindDouble(position: Int, double: Double): UnitBinds a Double at the given position. |
| bindLong | abstract fun bindLong(position: Int, long: Long): UnitBinds a Long at the given position. |
| bindNull | abstract fun bindNull(position: Int): UnitBinds a null value at the given position. |
| bindString | abstract fun bindString(position: Int, string: String): UnitBinds a String at the given position. |
| clear | abstract fun clear(): UnitClears any bound values. |
| execute | abstract fun execute(): UnitExecutes with any bound values. |
| Name | Summary |
|---|---|
| AndroidSQLiteBinder | class AndroidSQLiteBinder : BinderThe Binder implementation for SQLite on Android. |
| AndroidSupportSQLiteBinder | class AndroidSupportSQLiteBinder : BinderThe Binder implementation for Support SQLite on Android. |