KQLiteDateTime

Represents com.kqlite.functions.DATETIME data stored within a KQLiteTable.dateTimeColumn.

This interface provides a way to interact with KQLiteTable.dateTimeColumn values, particularly for obtaining their string representation as YYYY-MM-DD HH:MM:SS using com.kqlite.functions.DATETIME functions. It supports standard date time formats and allows for modifications using DateTimeModifier extensions.

Example

Employees.quickInsert {
it.lastLogin.bind(DATETIME("2004-01-01 02:34:56"))
}

Author

MOHAMMAD AZIM ANSARI

See also

Functions

Link copied to clipboard
abstract fun getText(): String

Retrieves the string representation of the dateTime value. The format of the string is YYYY-MM-DD HH:MM:SS.