Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
456 views

CLSQL and MYSQL on OS X

I'm working on OS X 10.6.4. I've been using clbuild to install supporting libraries for SBCL (including clsql), and I do all my work through Aquamacs. I installed MySQL using the excellent ...
5
votes
2answers
428 views

Install CLSQL on Mac OS X

I have SBCL installed (via macports/darwinports) on my Intel Core 2 Duo Macbook running 10.5.8. I've installed several libraries like this: (require 'asdf) (require 'asdf-install) ...
4
votes
0answers
195 views

What is the correct connection string for clsql when accessing ms sqlserver using odbc? [closed]

I am accessing a database on another machine from an OS X server. After setting up freetds through macports and creating the freetds.conf file like so: dump file = /tmp/freetds.log # nunb our ...
4
votes
1answer
107 views

CLSQL symbol exports

Does anyone know about how the clsql-sys methods get exported to the clsql-sys/cl-user package? The methods are defined individually for each database type. For example, suppose I define a method in ...
2
votes
1answer
245 views

clsql connect oracle database

I am doing some practice with clsql. I want to connect my oracle server hence my connection function is; (connect '("192.168.2.3" "xe" "username" "password") :database-type :oracle) when i hit the ...
2
votes
1answer
216 views

How to use autoincrement primary keys with CL-SQL?

I am using CL-SQL with SQLite backend, and I can't quite get autoincremented primary keys to work. I declared a slot like (in def-view-class): ((id :accessor d-id :db-constraints :primary-key :type ...
1
vote
2answers
455 views

clsql trouble in SBCL

I'm trying to get clsql working (used to use cl-mysql, but looking at alternatives). Just attempting to play around at this point, and I'm getting stopped at connect (connect '("localhost" "test" ...
0
votes
0answers
50 views

How to 'execute-command' on multiple databases?

I've a piece of Common Lisp software which deals with two SQLite3 databases and "execute-command" in order to create a VIEW which finds INTERSECTION of a common field (to name it Date) on two ...
0
votes
1answer
101 views

SBCL load error for clsql-mysql from quicklisp for version clsql-20110829

For SBCL 1.0.45, using quicklisp to load clsql-mysql, I get an error about "no symbol", which appears to cause the interface to fail to load. Specifically, the error is: [package clsql-mysql] ...
0
votes
1answer
79 views

CLSQL timestamp Column Type

I'm using CLSQL with MySQL. What combination of keywords do I have to pass to create-table in order to give it a column with the timestamp column type? (create-table [foo] `(([bar] timestamp))) is ...