|
NAMENet::Google::SafeBrowsing2::Postgres - Postgres as back-end storage for the Google Safe Browsing v2 databaseSYNOPSISuse Net::Google::SafeBrowsing2::Postgres; my $storage = Net::Google::SafeBrowsing2::Postgres->new( host => '127.0.0.1', database => 'google_safe_browsing', username => $username, password => $password, ); # ... $storage->close(); DESCRIPTIONThis is an implementation of Net::Google::SafeBrowsing2::Storage using Postgres.CONSTRUCTORnew()Create a Net::Google::SafeBrowsing2::Postgres objectmy $storage = Net::Google::SafeBrowsing2::Postgres->new( host => '127.0.0.1', database => 'google_safe_browsing', username => $username, password => $password, ); 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(); SEE ALSOSee Net::Google::SafeBrowsing2 for handling Google Safe Browsing v2.COPYRIGHT AND LICENSECopyright 2012 Nick Johnston, nickjohnstonsky@gmail.com. Based on "Net::Google::SafeBrowsing2" 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.
Visit the GSP FreeBSD Man Page Interface. |