CLSQL Character Export

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

+4
source share
1 answer

I assume you mean the export list in mysql-package.lisp .

+1
source

All Articles