refactored database-output-sql-as-type in a similar fashion to
[clsql.git] / sql / generic-odbc.lisp
index 60c5d930463c116bef189e8bb732ede6a3b8f588..d64db208b1b3a62b190b4773624ab67cd8adb12b 100644 (file)
     (:mssql "1")
     (t "'Y'")))
 
-(defmethod database-output-sql-as-type ((type (eql 'boolean)) val database
-                                        (db-type (eql :mssql)))
-  (declare (ignore database))
-  (if val 1 0))
-
-(defmethod database-output-sql-as-type ((type (eql 'generalized-boolean)) val database
-                                        (db-type (eql :mssql)))
-  (declare (ignore database))
-  (if val 1 0))
-
 ;;; Database backend capabilities
 
 (defmethod db-type-use-fully-qualified-column-on-drop-index? ((db-type (eql :mssql)))