Does anybody have a Golden Common LISP, I tryed to step into a contact with: http://www.goldhill-inc.com, several times, but they don't respond.I ned him becouse he s only who have a SQL connection under Windows, I tryed with LISPWORKS,and Allegro, but that doesen't work.
Thanks in advance ! Robert Bralic Danilska 7 22000 Sibenik Croatia robo_bra...@yahoo.co.uk
> Does anybody have a Golden Common LISP, > I tryed to step into a contact with: > http://www.goldhill-inc.com, several times, but > they don't respond.I ned him becouse he s only > who have a SQL connection under Windows, > I tryed with LISPWORKS,and Allegro, but > that doesen't work.
> Thanks in advance ! > Robert Bralic > Danilska 7 > 22000 Sibenik > Croatia > robo_bra...@yahoo.co.uk
> Does anybody have a Golden Common LISP, > I tryed to step into a contact with: > http://www.goldhill-inc.com, several times, but > they don't respond.I ned him becouse he s only > who have a SQL connection under Windows, > I tryed with LISPWORKS,and Allegro, but > that doesen't work.
clisp works on MS-Windows. The Pg package works on clisp, which allows to connect to a PostGreSQL database. You can even run PostGreSQL on MS-Windows.
Therefore there is at least one alternative to Golden Common Lisp to have a SQL connection from a Common Lisp on MS-Windows.
> > Does anybody have a Golden Common LISP, > > I tryed to step into a contact with: > > http://www.goldhill-inc.com, several times, but > > they don't respond.I ned him becouse he s only > > who have a SQL connection under Windows, > > I tryed with LISPWORKS,and Allegro, but > > that doesen't work.
> clisp works on MS-Windows. The Pg package works on clisp, which > allows to connect to a PostGreSQL database. You can even run > PostGreSQL on MS-Windows.
> Therefore there is at least one alternative to Golden Common Lisp to > have a SQL connection from a Common Lisp on MS-Windows.
> Nobody can fix the economy. Nobody can be trusted with their finger > on the button. Nobody's perfect. VOTE FOR NOBODY.
Dear,
Thank you wery much ,but I can't find how to run function on V-CLISP,or program. Is there any manual, maybe I'am stuppid but I can't find hoe to run program in VISUAL-CLISP.
> Does anybody have a Golden Common LISP, > I tryed to step into a contact with: > http://www.goldhill-inc.com, several times, but > they don't respond.I ned him becouse he s only > who have a SQL connection under Windows, > I tryed with LISPWORKS,and Allegro, but > that doesen't work.
I have used Lispworks to talk to SQL databases (over ODBC) using a couple of different libraries over the past 6 years in critical production environments (including e-commerce and billing/accounting/fraud applications).
I am under the impression that people do this sort of thing all the time in both Lispworks and Allegro, at least.
RB> Dear, RB> RB> Does anybody have a Golden Common LISP, RB> I tryed to step into a contact with: RB> http://www.goldhill-inc.com, several times, but RB> they don't respond.I ned him becouse he s only RB> who have a SQL connection under Windows, RB> I tryed with LISPWORKS,and Allegro, but RB> that doesen't work. RB> RB> Thanks in advance ! RB> Robert Bralic RB> Danilska 7 RB> 22000 Sibenik RB> Croatia RB> robo_bra...@yahoo.co.uk
If you meant an ODBC connection, you could try YSQL (http://lisp.ystok.ru/ysql.html). It works for sure on LispWorks for Windows. -- Sincerely, Dmitriy Ivanov lisp.ystok.ru
"Robert Bralic" <robo_bra...@yahoo.co.uk> writes: > > clisp works on MS-Windows. The Pg package works on clisp, which > > allows to connect to a PostGreSQL database. You can even run > > PostGreSQL on MS-Windows.
> > Therefore there is at least one alternative to Golden Common Lisp to > > have a SQL connection from a Common Lisp on MS-Windows.
> Thank you wery much ,but I can't find how to run function on V-CLISP,or > program. > Is there any manual, maybe I'am stuppid but I can't find hoe to run program > in VISUAL-CLISP.
Just select in the menu Compiler / Debug (F5), and type commands in the "Enter" field of the output window.
Pascal Bourguignon <s...@mouse-potato.com> wrote in message <news:87r7hlizyj.fsf@thalassa.informatimago.com>... > clisp works on MS-Windows. The Pg package works on clisp, which > allows to connect to a PostGreSQL database. You can even run > PostGreSQL on MS-Windows.
Latest CVS-version of Clisp can also run CLSQL. I've tested it with CLSQL postgres-socket driver and it passed all CLSQL tests except 4, where loop macro was used.
Possibly other drivers would also work after some struggling with CLSQL UFFI stuff.
> clisp works on MS-Windows. The Pg package works on clisp, which > allows to connect to a PostGreSQL database. You can even run > PostGreSQL on MS-Windows.
CLISP comes with its own PostGreSQL module too. (works with PostGreSQL 8.0 both on Linux and Windows)
1. I wasn't aware than postgresql-socket backend did work on CLSQL. In fact, I don't believe that that it could since I've had to write implementation-specific socket code to handle the opening of socket streams and CLSQL does not not have a function to open a socket on CLISP.
2. Without UFFI support, then only the postgresql-socket backend will work. That still leaves the mysql, postgresql, odbc, oracle, sqlite, and sqlite3 backends non-functioning on CLIS