Enumeration Casegrdb 7.4.0GRDB
utc
SQLFunctions.swift:521case utc
case utc
import GRDB
A toolkit for SQLite databases, with a focus on application development
enum SQLDateModifier
A date modifier for SQLite date functions.
case second(Double)
Adds the specified amount of seconds
case minute(Int)
Adds the specified amount of minutes
case hour(Int)
Adds the specified amount of hours
case day(Int)
Adds the specified amount of days
case month(Int)
Adds the specified amount of months
case year(Int)
Adds the specified amount of years
case startOfDay
Shifts the date backwards to the beginning of the current day
case startOfMonth
Shifts the date backwards to the beginning of the current month
case startOfYear
Shifts the date backwards to the beginning of the current year
case weekday(Int)
See https://www.sqlite.org/lang_datefunc.html
case unixEpoch
See https://www.sqlite.org/lang_datefunc.html
case localTime
See https://www.sqlite.org/lang_datefunc.html