This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.annotation.SuppressLint | |
import androidx.room.RoomSQLiteQuery | |
private const val NULL = 1 | |
private const val LONG = 2 | |
private const val DOUBLE = 3 | |
private const val STRING = 4 | |
private const val BLOB = 5 | |
private const val NULL_QUERY = "NULL" |