The macro I'd like to have
Friday, December 17, 2004
On c.l.l., a reader asked "I was wondering if you could point me to some pages describing the idioms for using RDBs with LISP". Pascal Bourguignon provided the following chunk of code:
(with-adequate-macrology
(assoc :name
(first
(select (id name salary) (from employee)
(where (> salary 1000000) #| don't dream, it's cents |#)))))
Hehe, that "with-adequate-macrology" is the macro I've always wanted
to have! ;-)

