CharLiteral

class CharLiteral(value: Char) : Literal<Char>

Represents a single Char literal in a KQLite query.

This class corresponds to CHAR(1) data type. While SQLite typically uses the TEXT affinity for character data, this class provides a specific representation for single characters, which are stored as a text string of length one.

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The Char value of this literal.

Constructors

Link copied to clipboard
constructor(value: Char)