NAME

Net::Google::SafeBrowsing2::Sqlite - Sqlite as back-end storage for the Google Safe Browsing v2 database

SYNOPSIS

use Net::Google::SafeBrowsing2::Sqlite;

my $storage = Net::Google::SafeBrowsing2::Sqlite->new(file => 'google-v2.db');
...
$storage->close();

DESCRIPTION

This is an implementation of Net::Google::SafeBrowsing2::Storage using Sqlite.

CONSTRUCTOR

new()

Create a Net::Google::SafeBrowsing2::Sqlite object

my $storage = Net::Google::SafeBrowsing2::Sqlite->new(file => 'google-v2.db');

Arguments

file

Required. File to store the database.

PUBLIC FUNCTIONS

close()

Cleanup old full hashes, and close the connection to the database.

$storage->close();

CHANGELOG

0.2

Add close() function to clean up old full hashes, and to close the connection to the database cleanly.

Add table and function to store and retrieve the Message Authentication Code (MAC) key.

In some environments, the module was trying to re-create existing tables. Fixed (Thank you to Luis Alberto Perez).

0.3

Fix typos in the documentation.

0.4

Disable journalization. This speed up updated by about 10x.

SEE ALSO

See Net::Google::SafeBrowsing2 for handling Google Safe Browsing v2.

See Net::Google::SafeBrowsing2::Storage for the list of public functions.

Google Safe Browsing v2 API: http://code.google.com/apis/safebrowsing/developers_guide_v2.html

AUTHOR

Julien Sobrier, <jsobrier@zscaler.com<gt> or <julien@sobrier.net>

COPYRIGHT AND LICENSE

Copyright (C) 2010 by Julien Sobrier

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.

4 POD Errors

The following errors were encountered while parsing the POD:

Around line 39:

You forgot a '=back' before '=head2'

Around line 56:

=back without =over

Around line 83:

You forgot a '=back' before '=head2'

Around line 100:

=back without =over