DBD::Google is a Perl module providing database-like interaction with
the Google Web API .
use DBI;
my $dbh = DBI->connect(“dbi:google:”, $KEY);
my $sth = $dbh->prepare(
qq[ SELECT title, URL FROM google WHERE q = “hacks” ]
);
while (my $r = $sth->fetchrow_hashref) {
…
DBD::Google is a Perl module providing database-like interaction with
the Google Web API .
use DBI;
my $dbh = DBI->connect(“dbi:google:”, $KEY);
my $sth = $dbh->prepare(
qq[ SELECT title, URL FROM google WHERE q = “hacks” ]
);
while (my $r = $sth->fetchrow_hashref) {
…