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?