import androidx.room.EntityInsertAdapter import androidx.room.RoomDatabase import androidx.room.util.getColumnIndexOrThrow import androidx.room.util.performBlocking import androidx.sqlite.SQLiteStatement import javax.`annotation`.processing.Generated import kotlin.ByteArray import kotlin.Int import kotlin.String import kotlin.Suppress import kotlin.Unit import kotlin.collections.List import kotlin.reflect.KClass @Generated(value = ["androidx.room.RoomProcessor"]) @Suppress(names = ["UNCHECKED_CAST", "DEPRECATION", "REDUNDANT_PROJECTION", "REMOVAL"]) public class MyDao_Impl( __db: RoomDatabase, ) : MyDao { private val __db: RoomDatabase private val __insertAdapterOfMyEntity: EntityInsertAdapter init { this.__db = __db this.__insertAdapterOfMyEntity = object : EntityInsertAdapter() { protected override fun createQuery(): String = "INSERT OR ABORT INTO `MyEntity` (`pk`,`byteArray`,`nullableByteArray`) VALUES (?,?,?)" protected override fun bind(statement: SQLiteStatement, entity: MyEntity) { statement.bindLong(1, entity.pk.toLong()) statement.bindBlob(2, entity.byteArray) val _tmpNullableByteArray: ByteArray? = entity.nullableByteArray if (_tmpNullableByteArray == null) { statement.bindNull(3) } else { statement.bindBlob(3, _tmpNullableByteArray) } } } } public override fun addEntity(item: MyEntity): Unit = performBlocking(__db, false, true) { _connection -> __insertAdapterOfMyEntity.insert(_connection, item) } public override fun getEntity(): MyEntity { val _sql: String = "SELECT * FROM MyEntity" return performBlocking(__db, true, false) { _connection -> val _stmt: SQLiteStatement = _connection.prepare(_sql) try { val _columnIndexOfPk: Int = getColumnIndexOrThrow(_stmt, "pk") val _columnIndexOfByteArray: Int = getColumnIndexOrThrow(_stmt, "byteArray") val _columnIndexOfNullableByteArray: Int = getColumnIndexOrThrow(_stmt, "nullableByteArray") val _result: MyEntity if (_stmt.step()) { val _tmpPk: Int _tmpPk = _stmt.getLong(_columnIndexOfPk).toInt() val _tmpByteArray: ByteArray _tmpByteArray = _stmt.getBlob(_columnIndexOfByteArray) val _tmpNullableByteArray: ByteArray? if (_stmt.isNull(_columnIndexOfNullableByteArray)) { _tmpNullableByteArray = null } else { _tmpNullableByteArray = _stmt.getBlob(_columnIndexOfNullableByteArray) } _result = MyEntity(_tmpPk,_tmpByteArray,_tmpNullableByteArray) } else { error("The query result was empty, but expected a single row to return a NON-NULL object of type .") } _result } finally { _stmt.close() } } } public companion object { public fun getRequiredConverters(): List> = emptyList() } }