lisp and oracle
Posted: Fri Mar 18, 2016 8:34 am
I already have experience in lisp programs used by cocreate modeling, but this is not able to connect to a oracle database, so I'm trying to do this by clisp, sbcl, lispworks personal or allegro express.
I'm working on a windows computer and can't find any tutorial on how to connect any of these programs to a remote oracle database. Can somebody help me to program this from scratch?
I tried to use "clsql" by doing this:
But the last line already gives an error that clsql doesn't exist. I think I did something wrong to "install" this, but I don't know what.
Anyone who can help me and has some experience whit this?
Thank you very much in advance
I'm working on a windows computer and can't find any tutorial on how to connect any of these programs to a remote oracle database. Can somebody help me to program this from scratch?
I tried to use "clsql" by doing this:
Code: Select all
(in-package :cl-user)
(load "C:/Program Files/Steel Bank Common Lisp/1.3.3/clsql-6.7.0/asdf.lisp")
(load "C:/uffi/uffi.asd")
(push #P"/usr/share/lisp/uffi/" asdf:*central-registry*)
(push #P"/usr/share/lisp/clsql/" asdf:*central-registry*)
(asdf:operate 'asdf:load-op 'clsql)
Anyone who can help me and has some experience whit this?
Thank you very much in advance