IntLiteral

class IntLiteral(value: Int) : Literal<Int>

Represents a 32-bit signed Int literal in a KQLite query.

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

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The Int value of this literal.

Constructors

Link copied to clipboard
constructor(value: Int)