Re: Couldn't load foreing library "clsql_uffi" drives me mad

Walter GR <[email protected]> Wed, 30 Nov 2011 14:49:51 -0800
Newsgroups gmane.lisp.clsql.general
Message-ID <[email protected]>
(Replying to the list this time.  Sorry Daniel...)

On 11/29/2011 08:26, Daniel Brunner wrote:
 > > Hi everyone,
 > >
 > > that problem arose from time to time and consumed half a day
 > > without any step further:
 > >
 > > On my Linux box, everything is okay with clsql. On Windows it is
 > > not. I once had a running environment but after switching to some
 > > newer versions of my libraries it is broken again:

I haven't tried clsql with QuickLisp and I'm still using CCL 1.6.

That said, using vanilla asdf, with sqlite3.dll in "c:/Documents and
Settings/Walter/My Documents/Lisp Libraries/", the following always
worked for me in CCL.

(asdf:oos 'asdf:load-op 'clsql)
(push #p"c:/Documents and Settings/Walter/My Documents/Lisp Libraries/"
clsql-sys:*foreign-library-search-paths*)
(asdf::oos 'asdf:load-op :clsql-sqlite3)

Walter


eom