DBD::Google 0.11 review

Download
by rbytes.net on

DBD::Google is a Perl module to treat Google as a datasource for DBI. SYNOPSIS use DBI; my $dbh = DBI->connect("dbi:Goog

License: Perl Artistic License
File size: 20K
Developer: Darren Chamberlain
0 stars award from rbytes.net

DBD::Google is a Perl module to treat Google as a datasource for DBI.

SYNOPSIS

use DBI;

my $dbh = DBI->connect("dbi:Google:", $KEY);
my $sth = $dbh->prepare(qq[
SELECT title, URL FROM google WHERE q = "perl"
]);

while (my $r = $sth->fetchrow_hashref) {
...

DBD::Google allows you to use Google as a datasource; Google can be queried using SQL SELECT statements, and iterated over using standard DBI conventions.

WARNING: This is still alpha-quality software. It works for me, but that doesn't really mean anything.

Requirements:
Perl

DBD::Google 0.11 search tags