DBD::Google 0.11 review
DownloadDBD::Google is a Perl module to treat Google as a datasource for DBI. SYNOPSIS use DBI; my $dbh = DBI->connect("dbi:Goog
|
|
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