ODBC, Lispworks
"Christopher C. Stacy" <[email protected]>
| Newsgroups | gmane.lisp.clsql.devel |
|---|---|
| Message-ID | <[email protected]> |
I downloaded CL-SQL 3.1.1 and UFFI 1.4.30 on Lispworks 4.1
and can get this far:
(load-logical-pathnames "clsql")
(pushnew #P"HL:CLSQL;" asdf:*central-registry* :test #'equal)
(asdf:oos 'asdf:load-op :clsql)
(asdf:oos 'asdf:load-op :clsql-odbc)
(initialize-database-type :database-type :odbc)
with no apparent problems.
But when I try to connect, like this:
(setq d (connect '("foo" "sa" "secret")))
I get this:
Error: #<Pointer to type :SHORT = #x007B4CE8> is not of foreign type (:POINTER :VOID).
Call to FLI::FOREIGN-TYPE-ERROR-FUNCTION
Call to ODBC::SQLGETINFO
Call to ODBC:%SQL-GET-INFO
Any idea what that's all about?