I am trying out the Artful Mysql module with newLisp and the "smoke" test using the examples does not connect to MySQL.
Assumptions:
- I am a newbie Lisp programmer.
- Platform is MacOS X 10.9
- newLisp 10.6
- MySQL 5.5
- The newLisp 10.6 standard distribution of the MySQL module works with MySQL 5.5, the Artful one does not.
(module "mysql.lsp") MAIN
(setf db (Mysql)) (Mysql 4336914432)
(:connect db "localhost" "RetransDjango" "pwd" "retransdjango") ERR: list expected in function : : "localhost" called from user defined function Mysql:connect
That module hasn't been updated to accommodate changes in newLISP syntax introduced in version 10.2. You probably need to use the
self
function...