NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
My experiences writing DBD::google (Score:2, Informative)
When I started writing
DBD::google, there was only one thing to go by:DBI::DBD, which gives a basic but servicable intro to writing a DBD. Since then, Takanori Kawai releasedDBD::Template, which provides a pretty good starting point, mostly (it seems) encapsulating the good advice fromDBI::DBD.As far as
SQL::Statementgoes, I initially wroteDBD::googlewithout it, but am rewriting it to subclassSQL::Parserand implement it's own feature set, which (SELECT-wise) is a superset of ANSI SQL, but in all other ways is extremely limited. Jeff Zucker (theSQL::Statementmaintainer) tells me that the upcomingSQL::Statementversion 1.006 will be even more amenable to subclassing that 1.005 is.(darren)
Reply to This