Re: [O] babel and postgresql

2013-02-24 Thread Bastien
Hi Daniel, dmg d...@uvic.ca writes: It looks like my inexperience with Lisp made me ignore the obvious. What is needed is not my patch below, but to add posgresql to the condition of the case: From: (case (intern engine) ('mysql To: (case (intern engine)

[O] babel and postgresql

2013-02-23 Thread dmg
Hi everybody, Eric, I have been starting using Babel with postgresql, R and perl, and I am loving it. I really want to thank everybody for their work. I have found one particular issue that bothers me. Say I have the following babel section: #+name: abc #+begin_src sql :engine postgresql

Re: [O] babel and postgresql

2013-02-23 Thread dmg
It looks like my inexperience with Lisp made me ignore the obvious. What is needed is not my patch below, but to add posgresql to the condition of the case: From: (case (intern engine) ('mysql To: (case (intern engine) ('(postgresql mysql) the problem is