Does anyone know how clsql-sys methods are exported to the clsql-sys / cl-user package?
Methods are defined individually for each type of database. For example, suppose I define a method in db-mysql / mysql-sql.lisp in the clsql-mysql package:
(defpackage #:clsql-mysql (:use #:common-lisp #:clsql-sys #:mysql #:clsql-uffi) (:export #:mysql-database) (:documentation "This is the CLSQL interface to MySQL.")) (in-package #:clsql-mysql) (defmethod example ((database mysql-database)))
How do I get this "example" method in clsql-sys package?
Sorry, this question is very specific to CLSQL ...
thanks! Jieren
source share