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

Dave Woodward <[email protected]> Tue, 7 Oct 2014 11:45:40 -0400
Newsgroups gmane.lisp.clsql.general
Message-ID <[email protected]>
Russ,

  Thanks for the tip!  =


  I=92m kind of iteratively hacking on this as I go, bouncing between liste=
ner and updating files.

  I=92m slowly building up to using packages properly (this is a side proje=
ct) and appreciate the advice.

  Thanks again!

Dave
[email protected]



On Oct 7, 2014, at 11:43 AM, Russ Tyndall <[email protected]> wrote:

> 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 min=
imal solution is to `(def-package :my-package ... (:use :cl :clsql))` and t=
hen `(in-package :my-package)`.  An even better solution would be to enumer=
ate all things in :clsql that you wish to use and `(:import-from :clsql)` t=
hem.
> =

> Hope this helps you get going,
> Cheers,
> Russ Tyndall