Re: Problem with date type specifier in a view-class with MySQL

Russ Tyndall <[email protected]> Tue, 07 Oct 2014 11:43:31 -0400
Newsgroups gmane.lisp.clsql.general
Message-ID <[email protected]>
Howdy Dave,

Glad we could get you working

As a note about your solution `(in-package :clsql)`, while this will 
work, now all of your user code is being included in the library. The 
usual minimal solution is to `(def-package :my-package ... (:use :cl 
:clsql))` and then `(in-package :my-package)`.  An even better solution 
would be to enumerate all things in :clsql that you wish to use and 
`(:import-from :clsql)` them.

Hope this helps you get going,
Cheers,
Russ Tyndall