File: control

package info (click to toggle)
libima-dbi-perl 0.35-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 192 kB
  • sloc: perl: 115; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,738 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Source: libima-dbi-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>
Section: perl
Priority: optional
Build-Depends: debhelper (>= 8)
Build-Depends-Indep: perl,
                     libclass-data-inheritable-perl,
                     libdbi-perl,
                     libdbix-contextualfetch-perl,
                     libtest-pod-coverage-perl,
                     libtest-pod-perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libima-dbi-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libima-dbi-perl.git
Homepage: https://metacpan.org/release/Ima-DBI

Package: libima-dbi-perl
Architecture: all
Depends: ${perl:Depends},
         ${misc:Depends},
         libclass-data-inheritable-perl,
         libdbi-perl,
         libdbix-contextualfetch-perl
Description: module for database connection caching and organization
 Ima::DBI attempts to organize and facilitate caching and more
 efficient use of database connections and statement handles.
 .
 One of the things that can be annoying about writing large programs
 with DBI is making sure that you do not have duplicate database
 handles open. There is also the issue of the somewhat wasteful nature
 of the prepare/execute/finish route that users tend to go through. 
 .
 The new DBI->connect_cached and DBI->prepare_cached help a lot, but
 you still have to throw around global information about the data
 source, username and password.
 .
 So, after a while the author grew a small library of DBI helper
 routines and techniques.  Ima::DBI is the culmination of all this,
 put into a nice(?), clean(?) class to be inherited from.