Date Time Modifier
interface DateTimeModifier
A marker interface to work with SQLite's date and time functions.
This interface ensures that the various date/time modifier functions, such as years(), months(), days(), etc., are only applied to columns that represent date/time values. It does not contain any methods or properties itself; its sole purpose is to serve as a type constraint in the KQLite library.
Example
Employees.quickInsert {
it.birthDate.bind(DATE().now().years(-5))
}Content copied to clipboard
Author
MOHAMMAD AZIM ANSARI