Wiki::Toolkit::Store::SQLite is a SQLite storage backend for Wiki::Toolkit.
METHODS
new
my $store = Wiki::Toolkit::Store::SQLite->new( dbname => "wiki" );
The dbname parameter is mandatory.
check_and_write_node
$store->check_and_write_node( node => $node,
checksum => $checksum,
%other_args );
Locks the node, verifies the checksum, calls write_node_post_locking with all supplied arguments, unlocks the node. Returns 1 on successful writing, 0 if checksum doesn't match, croaks on error.
Requirements:
· Perl
What's New in This Release:
· Added list_last_version_before method, to get the version of all the nodes at a given point in time
· Updated version on Text::WikiFormat dependency to avoid long-standing test failure with old version
· Bump version number of Wiki::Toolkit::Plugin as this was not done the last time it was changed (for CPAN.pm compatibility)
Product's homepage