File: control

package info (click to toggle)
libdbix-dbstag-perl 0.12-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,424 kB
  • ctags: 826
  • sloc: perl: 6,152; sql: 588; xml: 221; lisp: 59; makefile: 20
file content (52 lines) | stat: -rw-r--r-- 2,061 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
49
50
51
52
Source: libdbix-dbstag-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Olivier Sallou <olivier.sallou@irisa.fr>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: perl,
                     libdata-stag-perl,
                     libdbi-perl,
                     libdbix-dbschema-perl,
                     libparse-recdescent-perl,
                     libxml-perl,
                     rename
Standards-Version: 3.9.8
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libdbix-dbstag-perl.git
Vcs-Git: https://anonscm.debian.org/git/pkg-perl/packages/libdbix-dbstag-perl.git
Homepage: https://metacpan.org/release/DBIx-DBStag

Package: libdbix-dbstag-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libdata-stag-perl,
         libdbd-pg-perl,
         libdbi-perl,
         libdbix-dbschema-perl,
         libparse-recdescent-perl,
         libxml-perl
Description: module providing relational database to hierarchical mapping
 The module DBIx::DBStag is for mapping from databases to Stag objects 
 (Structured Tags - see the Data::Stag manpage), which can also be
  represented as XML. It has two main uses:
 .
 Querying
   This module can take the results of any SQL query and decompose the
   flattened results into a tree data structure which reflects the
   foreign keys in the underlying relational schema. It does this by
   looking at the SQL query and introspecting the database schema,
   rather than requiring metadata or an object model.
 .
   In this respect, the module works just like a regular the DBI
   manpage handle, with some extra methods provided.
 .
 Storing Data
   DBStag objects can store any tree-like datastructure (such as XML
   documents) into a database using normalized schema that reflects the
   structure of the tree being stored. This is done using little or no
   metadata.
 .
   XML can also be imported, and a relational schema automatically
   generated.