Install clsql sqlite3 using SBCL + quicklisp

I want to use sqlite3 clsql interface . I am already installing clsqlusing quicklisp. But when I try to run:

(clsql:with-database (db '("database.db") 
                          :database-type :sqlite3)
  nil)

I get

OPERATION-ERROR while invoking #<COMPILE-OP > on
#<CLSQL-UFFI-SOURCE-FILE "clsql-uffi" "uffi" "clsql_uffi">
   [Condition of type ASDF/BACKWARD-INTERFACE:OPERATION-ERROR]

This is the same if I just try to run quicklisp clsql-uffi.

cl-sql, cl-sql-uffi, cl-sql-sqlite3, And libsqlite3-dev. I am using Ubuntu, Linux.

+4
source share
1 answer

Edit: Separate issues more clearly.

Installing CLSQL is not always easy.

  • CLSQL , , build-essentials. , ( , ), make .

  • make clsql, , AWS- - , . make clsql, .

  • Ubuntu cl-sql. 14.04+, , , clsql quicklisp, , .

+5
source

All Articles