added a few comments
This commit is contained in:
parent
7cc0537ed4
commit
eb4b60db6f
|
@ -92,18 +92,19 @@
|
||||||
(define sql-datasources-fetch-first 2)
|
(define sql-datasources-fetch-first 2)
|
||||||
|
|
||||||
;;; C type identifier
|
;;; C type identifier
|
||||||
(define sql-type-c-char 1)
|
(define sql-type-c-char 1) ; SQL_C_CHAR
|
||||||
(define sql-type-c-long 4)
|
(define sql-type-c-long 4) ; SQL_C_LONG
|
||||||
(define sql-type-c-short 5)
|
(define sql-type-c-short 5) ; SQL_C_SHORT
|
||||||
(define sql-type-c-float 7)
|
(define sql-type-c-float 7) ; SQL_C_FLOAT
|
||||||
(define sql-type-c-double 8)
|
(define sql-type-c-double 8) ; SQL_C_DOUBLE
|
||||||
(define sql-type-c-numeric 2)
|
(define sql-type-c-numeric 2) ; SQL_C_NUMERIC
|
||||||
(define sql-type-c-default 99)
|
(define sql-type-c-default 99) ; SQL_C_DEFAULT (not mentioned in Appendix D?!?!?)
|
||||||
(define sql-type-c-date 9)
|
(define sql-type-c-date 9) ; SQL_C_DATE
|
||||||
(define sql-type-c-time 10)
|
(define sql-type-c-time 10) ; SQL_C_TIME
|
||||||
(define sql-type-c-timestamp 11)
|
(define sql-type-c-timestamp 11) ; SQL_C_TIMESTAMP
|
||||||
(define sql-type-c-binary -2)
|
(define sql-type-c-binary -2) ; SQL_C_BINARY
|
||||||
(define sql-type-c-bit -7)
|
(define sql-type-c-bit -7) ; SQL_C_BIT
|
||||||
|
; missing: all the SQL_C_INTERVAL* stuff
|
||||||
|
|
||||||
;;; ODBC type identifier
|
;;; ODBC type identifier
|
||||||
(define sql-type-unknown 0) ; SQL_UNKNOWN_TYPE
|
(define sql-type-unknown 0) ; SQL_UNKNOWN_TYPE
|
||||||
|
|
Loading…
Reference in New Issue