DateLiteral

Represents a DATE as KQLiteDate literal in a KQLite query.

This class corresponds to the DATE data type. SQLite does not have a dedicated storage class for dates, so KQLite stores them as TEXT in the ISO-8601 format YYYY-MM-DD. This class encapsulates a date value provided as a string.

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The date string in YYYY-MM-DD format.

See also

Constructors

Link copied to clipboard
constructor(value: String)