Hi Laurent,

> This is to announce that next version of DBD::SQLite (the Perl
> driver for accessing SQLite databases) will include support for
> virtual tables written in Perl.

Thanks for the effort you put into this. I'm glad to see DBD::SQLite
continuing to improve, although I already consider it one of the
best interfaces to SQLite from a scripting language.

> * PerlData

This I could have used about a year ago. In one of my Perl programs
I dynamically generate a large list of values which I then need to
join with rows in SQLite. Currently I create a temporary table and
insert each value as it appears. The PerlData virtual table would
instead let me keep them in an @array variable to be used in a
single, simple, SQL statement at the end. This would dramatically
reduce the number calls I make into SQLite.

-- 
Mark Lawrence
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to