Update www/piwik to version 2.4.1
[dports.git] / databases / p5-DBIx-Admin-DSNManager / pkg-descr
1 DBIx::Admin::DSNManager manages a file of DSNs, for both testing and production.
2
3 The INI-style format was selected, rather than, say, using an SQLite database,
4 so that casual users could edit the file without needing to know SQL and without
5 having to install the command line program sqlite3.
6
7 Each DSN is normally for something requiring manual preparation, such as
8 creating the database named in the DSN.
9
10 In the case of SQLite, etc, where manual intervention is not required, you can
11 still put the DSN in dsn.ini.
12
13 One major use of this module is to avoid environment variable overload, since it
14 is common to test Perl modules by setting the env vars $DBI_DSN, $DBI_USER and
15 $DBI_PASS.
16
17 But then the problem becomes: What do you do when you want to run tests against
18 a set of databases servers? Some modules define sets of env vars, one set per
19 database server, with awkward and hard-to-guess names. This is messy and
20 obscure.
21
22 DBIx::Admin::DSNManager is a solution to this problem.
23
24 WWW: http://search.cpan.org/dist/DBIx-Admin-DSNManager/