|
NAMENet::Google::SafeBrowsing2::MySQL - MySQL as back-end storage for the Google Safe Browsing v2 databaseSYNOPSISuse Net::Google::SafeBrowsing2::MySQL; my $storage = Net::Google::SafeBrowsing2::MySQL->new(host => '127.0.0.1', database => 'GoogleSafeBrowsingv2'); ... $storage->close(); DESCRIPTIONThis is an implementation of Net::Google::SafeBrowsing2::Storage using MySQL.CONSTRUCTORnew()Create a Net::Google::SafeBrowsing2::MySQL objectmy $storage = Net::Google::SafeBrowsing2::MySQL->new( host => '127.0.0.1', database => 'GoogleSafeBrowsingv2', username => 'foo', password => 'bar' ); Arguments
PUBLIC FUNCTIONSSee Net::Google::SafeBrowsing2::Storage for a complete
list of public functions.
close()Cleanup old full hashes, and close the connection to the database.$storage->close(); CHANGELOG
SEE ALSOSee Net::Google::SafeBrowsing2 for handling Google Safe Browsing v2.See Net::Google::SafeBrowsing2::Storage for the list of public functions. See Net::Google::SafeBrowsing2::Sqlite for a back-end using Sqlite. Google Safe Browsing v2 API: <http://code.google.com/apis/safebrowsing/developers_guide_v2.html> AUTHORJulien Sobrier, <jsobrier@zscaler.com> or <julien@sobrier.net>COPYRIGHT AND LICENSECopyright (C) 2011 by Julien SobrierThis 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.
Visit the GSP FreeBSD Man Page Interface. |