X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-odbc%2Fodbc-constants.lisp;h=591a3afa43fcc76c0f7a3f0df4e15bbd62652eae;hp=c16e2a76869201da13e5b15add9ea95147fdc129;hb=5bfa219c5e3b387b9dd7c819441f0182ccb16dc8;hpb=48a9de835029c5db6ac83235b6794fa20d3e56d5 diff --git a/db-odbc/odbc-constants.lisp b/db-odbc/odbc-constants.lisp index c16e2a7..591a3af 100644 --- a/db-odbc/odbc-constants.lisp +++ b/db-odbc/odbc-constants.lisp @@ -894,6 +894,11 @@ (defconstant $SQL_TINYINT -6) (defconstant $SQL_BIT -7) +;; For ODBC3 +(defconstant $SQL_TYPE_DATE 91) +(defconstant $SQL_TYPE_TIME 92) +(defconstant $SQL_TYPE_TIMESTAMP 93) + (defconstant $SQL_INTERVAL_YEAR -80) (defconstant $SQL_INTERVAL_MONTH -81) (defconstant $SQL_INTERVAL_YEAR_TO_MONTH -82) @@ -930,6 +935,11 @@ (defconstant $SQL_C_UTINYINT (+ $SQL_TINYINT $SQL_UNSIGNED_OFFSET)) ;;UNSIGNED TINYINT (defconstant $SQL_C_BOOKMARK $SQL_C_ULONG) ;; BOOKMARK +;;; ODBC3 +(defconstant $SQL_C_TYPE_DATE $SQL_TYPE_DATE) +(defconstant $SQL_C_TYPE_TIME $SQL_TYPE_TIME) +(defconstant $SQL_C_TYPE_TIMESTAMP $SQL_TYPE_TIMESTAMP) + ;; Options for SQLDriverConnect (defconstant $SQL_DRIVER_NOPROMPT 0) (defconstant $SQL_DRIVER_COMPLETE 1)