File: control

package info (click to toggle)
libdbix-recordset-perl 0.26-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,656 kB
  • ctags: 729
  • sloc: perl: 6,970; makefile: 6
file content (39 lines) | stat: -rw-r--r-- 1,663 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
Source: libdbix-recordset-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonathan Yu <jawnsy@cpan.org>,
           gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl,
                     libdbi-perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdbix-recordset-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdbix-recordset-perl.git
Homepage: https://metacpan.org/release/DBIx-Recordset

Package: libdbix-recordset-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libdbi-perl
Description: Perl extension for DBI recordsets
 DBIx::Recordset is a perl module for abstraction and simplification of
 database access.
 .
 The goal is to make standard database access (select/insert/update/delete)
 easier to handle and independent of the underlying DBMS. Special attention is
 made on web applications to make it possible to handle the state-less access
 and to process the posted data of form fields, but DBIx::Recordset is not
 limited to web applications.
 .
 DBIx::Recordset uses the DBI API to access the database, so it should
 work with every database for which a DBD driver is available (see
 also DBIx::Compat).
 .
 Most public functions take a hash reference as parameter, which makes
 it simple to supply various different arguments to the same
 function. The parameter hash can also be taken from a hash containing
 posted form fields like those available with CGI.pm, mod_perl,
 HTML::Embperl and others.