Hi,
I want to connect LISP with Mysql database. I am using the below mentioned code in the file database.lisp. When I compile and losd the file 'database.lisp', it is giving the error message.
I already created the database and table in mysql.
CODE:
-------------------
(push #P"/usr/share/common-lisp/systems/" asdf:*central-registry*)
(asdf:operate 'asdf:load-op 'clsql)
(clsql:connect '("" "database_name" "user_name" "password") :database-type :mysql)
(clsql-sys:query "SELECT * FROM table_name")
-------------------
Thanks & Regards
Nitin