File: control

package info (click to toggle)
libdbix-class-perl 0.08010-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,052 kB
  • ctags: 1,064
  • sloc: perl: 10,536; sql: 225; makefile: 45
file content (48 lines) | stat: -rw-r--r-- 2,878 bytes parent folder | download
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
41
42
43
44
45
46
47
48
Source: libdbix-class-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 6.0.0), quilt (>= 0.40)
Build-Depends-Indep: perl (>= 5.8.0-7), libdbi-perl, libdbd-sqlite3-perl,
 libclass-c3-perl (>= 0.11), libdbix-contextualfetch-perl, libdata-page-perl,
 libclass-trigger-perl, libmodule-build-perl, libsql-abstract-perl,
 libsql-abstract-limit-perl, libtest-pod-perl, libtest-pod-coverage-perl,
 libcarp-clan-perl, libclass-inspector-perl, libdatetime-perl,
 libmodule-find-perl, libsql-translator-perl, libclass-accessor-grouped-perl,
 libscope-guard-perl, libfile-spec-perl, libclass-c3-componentised-perl,
 libdatetime-format-mysql-perl, libjson-any-perl, libtext-csv-xs-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>,
 Florian Ragwitz <rafl@debianforum.de>, gregor herrmann <gregoa@debian.org>
Homepage: http://search.cpan.org/dist/DBIx-Class/
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdbix-class-perl/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libdbix-class-perl/
Standards-Version: 3.7.3

Package: libdbix-class-perl
Architecture: all
Depends: ${perl:Depends}, libclass-c3-perl (>= 0.11), libdata-page-perl,
 libsql-abstract-perl, libdbi-perl, libsql-abstract-limit-perl,
 libcarp-clan-perl, libclass-inspector-perl, libmodule-find-perl,
 libclass-accessor-grouped-perl, libscope-guard-perl,
 libclass-c3-componentised-perl, libjson-any-perl
Recommends: libdatetime-format-mysql-perl, libdatetime-format-db2-perl,
 libdatetime-format-pg-perl, libfile-spec-perl, libsql-translator-perl
Suggests: libdbd-sqlite3-perl, libdbix-contextualfetch-perl,
 libclass-trigger-perl
Description: Extensible and flexible object <-> relational mapper
 DBIx::Class is an SQL to OO mapper with an object API inspired by Class::DBI
 (and a compatibility layer as a springboard for porting) and a resultset API 
 that allows abstract encapsulation of database operations. It aims to make 
 representing queries in your code as perl-ish as possible while still 
 providing access to as many of the capabilities of the database as possible, 
 including retrieving related records from multiple tables in a single query, 
 JOIN, LEFT JOIN, COUNT, DISTINCT, GROUP BY and HAVING support.
 .
 DBIx::Class can handle multi-column primary and foreign keys, complex queries
 and database-level paging, and does its best to only query the database in 
 order to return something you've directly asked for. If a resultset is used 
 as an iterator it only fetches rows off the statement handle as requested 
 in order to minimise memory usage. It has auto-increment support for SQLite, 
 MySQL, PostgreSQL, Oracle, SQL Server and DB2 and is known to be used in 
 production on at least the first four, and is fork- and thread-safe out of 
 the box (although your DBD may not be).