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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
Source: libdbix-class-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>,
Ansgar Burchardt <ansgar@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libclass-accessor-grouped-perl <!nocheck>,
libclass-c3-componentised-perl <!nocheck>,
libclass-dbi-perl <!nocheck>,
libclass-inspector-perl <!nocheck>,
libclass-trigger-perl <!nocheck>,
libclass-unload-perl <!nocheck>,
libclone-perl <!nocheck>,
libconfig-any-perl <!nocheck>,
libcontext-preserve-perl <!nocheck>,
libdata-dumper-concise-perl <!nocheck>,
libdate-simple-perl <!nocheck>,
libdatetime-format-mysql-perl <!nocheck>,
libdatetime-format-pg-perl <!nocheck>,
libdatetime-format-sqlite-perl <!nocheck>,
libdatetime-format-strptime-perl <!nocheck>,
libdbd-sqlite3-perl <!nocheck>,
libdbi-perl <!nocheck>,
libdbix-contextualfetch-perl <!nocheck>,
libdevel-globaldestruction-perl <!nocheck>,
libgetopt-long-descriptive-perl <!nocheck>,
libhash-merge-perl <!nocheck>,
libjson-any-perl <!nocheck>,
libmath-base36-perl <!nocheck>,
libmodule-find-perl <!nocheck>,
libmoo-perl <!nocheck>,
libmoose-perl <!nocheck>,
libmoosex-types-json-perl <!nocheck>,
libmoosex-types-loadableclass-perl <!nocheck>,
libmoosex-types-path-class-perl <!nocheck>,
libmoosex-types-perl <!nocheck>,
libnamespace-clean-perl <!nocheck>,
libpackage-stash-perl <!nocheck>,
libpath-class-perl <!nocheck>,
libscope-guard-perl <!nocheck>,
libsql-abstract-classic-perl <!nocheck>,
libsql-translator-perl <!nocheck>,
libsub-name-perl <!nocheck>,
libtest-deep-perl <!nocheck>,
libtest-exception-perl <!nocheck>,
libtest-warn-perl <!nocheck>,
libtext-csv-perl <!nocheck>,
libtime-piece-mysql-perl <!nocheck>,
libtry-tiny-perl <!nocheck>,
perl
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdbix-class-perl.git
Homepage: https://metacpan.org/release/DBIx-Class
Rules-Requires-Root: no
Package: libdbix-class-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libclass-accessor-grouped-perl,
libclass-c3-componentised-perl,
libclass-inspector-perl,
libconfig-any-perl,
libcontext-preserve-perl,
libdata-dumper-concise-perl,
libdbi-perl,
libdevel-globaldestruction-perl,
libhash-merge-perl,
libmodule-find-perl,
libmoo-perl,
libnamespace-clean-perl,
libpath-class-perl,
libscope-guard-perl,
libsql-abstract-classic-perl,
libsub-name-perl,
libtry-tiny-perl
Recommends: libsql-translator-perl
Suggests: libclone-perl,
libgetopt-long-descriptive-perl,
libjson-any-perl,
libmath-base36-perl,
libmoose-perl,
libmoosex-types-json-perl,
libmoosex-types-loadableclass-perl,
libmoosex-types-path-class-perl,
libmoosex-types-perl,
libtext-csv-perl
Breaks: libdbicx-sugar-perl (<< 0.0200-2~)
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).
|