Re: CLSQL version 5.1.0 released
Kevin Rosenberg <kevin-HJRc7zDS/[email protected]>
| Newsgroups | gmane.lisp.clsql.general |
|---|---|
| Message-ID | <[email protected]> |
On Apr 21, 2010, at 10:02 AM, Kevin Raison wrote: > So UFFI has this function with the proper keyword? If so, how do I get clsql to use UFFI's function and not CFFI's? It seems that having both packages as dependencies can cause some strange behavior; does anyone know a good way to avoid this kind of clash? I tried removing CFFI entirely from my asdf:*central-registry*, but clsql fails to compile without it. Yes, UFFI has the proper keywords. I started UFFI back in 2001 to be CLSQL's helper library. The latest UFFI should always work with the latest CLSQL. To use UFFI, it should be as simple as loading something like clsql-mysql ASDF module which will automatically load UFFI (amongst other ASDF modules like clsql and clsql-uffi ASDF). The only case where what isn't true is on CLISP since UFFI doesn't support CLISP. What Lisp implementation are you using? Kevin