Windows 7, SBCL 1.2.11 (X86-64)

Established the mysql base, created the user, gave all the rights. Created a table manually. Now I want to connect. Used library "cl-dbi".

(defvar *connection* (connect :mysql :database-name "base" :username "user" :password "1234")) (setq query (prepare *connection* "SELECT * FROM catalogs")) 

So far, so good, but now the error

 (execute query) EXCEPTION_ACCESS_VIOLATION 

Same problem with the "cl-mysql" library. The error is the same. I understand that this is not in the libraries, but in the database. But what exactly?

  • maybe the problem is still in the sbcl + ms / windows bundle? code.google.com/p/lispbuilder/issues/detail?id=27 (there are more links to go there) - aleksandr barakin
  • maybe ... I'm tired of these incompatibilities. What to do with it now? - Bobik
  • arguing in the abstract: if two entities are poorly compatible, then you can try to replace at least one of them with an analogue. I assume that you are unlikely to catch the cause of this error and correct the sbcl code for ms / windows . - aleksandr barakin
  • There is another option to try another database with another library, I have already aimed. - Bobik
  • If you believe the bug-report, then with a high degree of probability, sooner or later you may again encounter the same incompatibility. - aleksandr barakin 1:58 pm

0