Take me over?
The maintainer of this distribution is looking for someone to take over!
If you're interested then please contact them via
email.
NAME
KiokuDB::Cmd::WithDSN::Create - Write or create access to a DSN for command line tools
SYNOPSIS
package KiokuDB::Cmd::Command::Blort;
use Moose;
extends qw(KiokuDB::Cmd::Base);
with qw(KiokuDB::Cmd::WithDSN::Create);
augment run => sub {
my $self = shift;
$self->backend;
};
ATTRIBUTES
- dsn
-
Command line attr for the DSN to connect to.
- create
-
A boolean determining whether the
create
flag is passed toconnect
. Defaults to true but can be disabled (--nocreate
). - clear
-
Command line attr determining whether or not
clear
will be called on the backend. Defaults to false. - backend
-
Non command line attr, contains the composed backend.