UByteLiteral

class UByteLiteral(value: UByte) : Literal<UByte>

Represents an 8-bit unsigned UByte literal in a KQLite query.

This class is used for UByte values. Since SQLite lacks a native unsigned integer type, KQLite stores these values in a standard INTEGER column. The INTEGER type is more than sufficient to hold the full range of UByte (0 to 255) without any risk of data loss or overflow.

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The UByte value of this literal.

Constructors

Link copied to clipboard
constructor(value: UByte)