Re: [sqlite] Building an SQL AST

2012-07-12 Thread Aaron Patterson
On Thu, Jul 12, 2012 at 11:26:16PM +0200, Vivien Malerba wrote: > Le 12 juil. 2012 21:40, "Aaron Patterson" <tenderl...@ruby-lang.org> a > écrit : > > > > Hi, > > > > I would like to build an AST of a SQL statement using SQLite3. I've >

[sqlite] Building an SQL AST

2012-07-12 Thread Aaron Patterson
out of the parser without major surgery? If so, can someone point me in the right direction? Thanks. -- Aaron Patterson http://tenderlovemaking.com/ ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo

[sqlite] Network access to SQLite

2004-04-15 Thread Aaron Patterson
I'm working on a project, and I thought it would be of some interest to people in this group. I've written an Apache module used for giving access to an SQLite database over a network. I have also written a perl DBD driver so that the SQLite server can be accessed in perl. The homepage is

Re: [sqlite] PRAGMA empty_result_callbacks

2004-04-12 Thread Aaron Patterson
aducom wrote: We thought that this was a problem too, but investigating we found out that in version 12 the execution of the pragma did not trigger the callback, but version 13 does. Which means that you have to ignore this first trigger, since it contains no data. Albert Drent aducom

[sqlite] PRAGMA empty_result_callbacks

2004-04-12 Thread Aaron Patterson
Hi, I just upgraded from 2.8.12 to 2.8.13 via RPM. I was wondering if anyone else noticed that PRAGMA empty_result_callbacks seems to break stuff now. Whenever I execute a statement with that pragma, my callback function can't get any column name information. Do I need to update my code for