repo.or.cz
/
blog.pm-common-perl-mods.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Version 0.3
[blog.pm-common-perl-mods.git]
/
Common-Form-Processor-Model-RDBO
/
t
/
lib
/
DB.pm
blob
ab0f283c54e3ef1336287638fc0a3c299d39151a
1
package
DB
;
2
3
use
strict
;
4
use
warnings
;
5
6
use
base
qw(Rose::DB)
;
7
8
use
FindBin
;
9
10
__PACKAGE__
->
use_private_registry
;
11
12
__PACKAGE__
->
register_db
(
13
driver
=>
'sqlite'
,
14
database
=>
"/tmp/form-processor-model-rdbo.db"
15
);
16
17
=head1 AUTHOR
18
19
vti
20
21
=head1 LICENSE
22
23
This library is free software, you can redistribute it and/or modify
24
it under the same terms as Perl itself.
25
26
=cut
27
28
1
;
29