KQLiteDate

Represents com.kqlite.functions.DATE data stored within a KQLiteTable.dateColumn.

This interface is used to interact with KQLiteTable.dateColumn and values within the KQLite. Particularly for obtaining their string representation as YYYY-MM-DD, using com.kqlite.functions.DATE functions. It supports standard date formats and allows for modifications using DateTimeModifier extensions.

Example

Employees.quickInsert {
it.birthDate.bind(DATE("2011-02-01"))
}

Author

MOHAMMAD AZIM ANSARI

See also

Functions

Link copied to clipboard
abstract fun getText(): String

Retrieves the date value as a string representation. The format of the string is YYYY-MM-DD.