Does anyone know about how the clsql-sys methods get exported to the clsql-sys/cl-user package?

The methods are defined individually for each database type. For example, suppose I define a method in db-mysql/mysql-sql.lisp in package clsql-mysql:

(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 that method "example" into the clsql-sys package?

Sorry this question is very CLSQL specific...

thanks! Jieren

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I guess what you mean is the exports list in mysql-package.lisp.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.