X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=db-mysql%2Fmysql-sql.lisp;h=7f88875f1cc9000fb59e9684df7381257cbfbae2;hp=46544926debd64b7dd30c94214362f89ad1ab054;hb=23b76563b25a517ad20f29d6dc5a65c8b958a042;hpb=afc88420d03b627b214473078c3adc201de2de80 diff --git a/db-mysql/mysql-sql.lisp b/db-mysql/mysql-sql.lisp index 4654492..7f88875 100644 --- a/db-mysql/mysql-sql.lisp +++ b/db-mysql/mysql-sql.lisp @@ -421,9 +421,25 @@ ;;; Database capabilities -(defmethod db-use-column-on-drop-index? ((db-type (eql :mysql))) +(defmethod db-type-use-column-on-drop-index? ((db-type (eql :mysql))) t) +(defmethod db-type-has-views? ((db-type (eql :mysql))) + ;; MySQL 4.1 will apparently have views, need to check *mysql-client-info* + nil) + +(defmethod db-type-has-subqueries? ((db-type (eql :mysql))) + ;; MySQL 4.1 will apparently have subqueries, need to check *mysql-client-info* + nil) + +(defmethod db-type-has-boolean-where? ((db-type (eql :mysql))) + nil) + +(defmethod db-type-transaction-capable? ((db-type (eql :mysql)) database) + (let ((has-innodb (caar (database-query "SHOW VARIABLES LIKE 'HAVE_INNODB'" database :auto)))) + (and has-innodb (string-equal "YES" has-innodb)))) + + (when (clsql-base-sys:database-type-library-loaded :mysql) (clsql-base-sys:initialize-database-type :database-type :mysql))