NAME
DBIx::QuickDB::Driver - Base class for DBIx::QuickDB drivers.
DESCRIPTION
Base class for DBIx::QuickDB drivers.
SYNOPSIS
package DBIx::QuickDB::Driver::MyDriver;
use strict;
use warnings;
use parent 'DBIx::QuickDB::Driver';
use DBIx::QuickDB::Util::HashBase qw{ ... };
sub viable { .. }
sub init {
my $self = shift;
$self->SUPER::init();
...
}
sub bootstrap { ... }
sub load_sql { ... }
sub connect { ... }
sub shell { ... }
sub start { ... }
sub stop { ... }
1;
TODO - MORE DOCS
This is a VERY alpha release, more docs to come, API may change completely.
SOURCE
The source code repository for DBIx-QuickDB can be found at https://github.com/exodist/DBIx-QuickDB/.
MAINTAINERS
AUTHORS
COPYRIGHT
Copyright 2018 Chad Granum <exodist7@gmail.com>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://dev.perl.org/licenses/