Skip to content

Commit

Permalink
store floats/ratios using the MSSQL decimal datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
ryepup committed Oct 24, 2011
1 parent 948ae32 commit 34f3aeb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions clsql.lisp
Expand Up @@ -224,6 +224,7 @@
(subtypep type 'float)) (subtypep type 'float))
(case backend (case backend
(:postgresql "double precision") (:postgresql "double precision")
(:mssql "decimal")
(T "double"))) (T "double")))
((or (subtypep type 'fixnum) (subtypep type 'integer)) ((or (subtypep type 'fixnum) (subtypep type 'integer))
(case backend (case backend
Expand Down

0 comments on commit 34f3aeb

Please sign in to comment.