ByteLiteral

class ByteLiteral(value: Byte) : Literal<Byte>

Represents an 8-bit signed Byte literal in a KQLite query.

This class corresponds to the TINYINT data type, a subset of the INTEGER affinity in SQLite. It is used for very small integer values.

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The Byte value of this literal.

Constructors

Link copied to clipboard
constructor(value: Byte)