can set timestamp function

This commit is contained in:
David Botton 2022-05-11 20:19:27 -04:00
parent cee70f1c41
commit 9f252f68e0
3 changed files with 17 additions and 7 deletions

View file

@ -124,6 +124,10 @@ keyword package."
;; Implementation - simple sql writers
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defparameter *mysql-timestamp* "unix_timestamp()")
(defparameter *sqlite-timestamp* "strftime('%s')")
(defparameter *postgresql-timestamp* "extract(epoch from now())")
;;;;;;;;;;;;;;;;;;;;
;; sql-field-list ;;
;;;;;;;;;;;;;;;;;;;;