Refactored Sector:: out from under Engine:: and into its own area
[dbsrgits/DBM-Deep.git] / lib / DBM / Deep / Storage / DBI.pm
CommitLineData
2c70efe1 1package DBM::Deep::Storage::DBI;
2
3use 5.006_000;
4
5use strict;
6use warnings FATAL => 'all';
7
8use base 'DBM::Deep::Storage';
9
10sub is_writable {
11 my $self = shift;
12 return 1;
13}
14
15sub lock_exclusive {
16 my $self = shift;
17}
18
19sub lock_shared {
20 my $self = shift;
21}
22
23sub unlock {
24 my $self = shift;
25}
26
271;
28__END__