• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Class/DBI/H23-Sep-2003-19869

t/H23-Sep-2003-54

Build.PLH A D23-Sep-2003539 2420

ChangesH A D23-Sep-2003171 139

INSTALLH A D23-Sep-2003115 74

MANIFESTH A D25-Apr-200393 109

META.ymlH A D25-Apr-2003396 2120

Makefile.PLH A D25-Apr-20031 KiB2821

READMEH A D21-Mar-20032.1 KiB7150

README

1NAME
2    Class::DBI::SAK - Class::DBI Swiss Army Knife (SAK)
3
4SYNOPSIS
5      use Class::DBI::SAK qw[:common :mysql FromCGI];
6
7ABSTRACT
8    This module encapsulates the pain and suffering that is importing
9    Class::DBI and all it's little helper friends.
10
11DESCRIPTION
12    By taking the busy work out of using Class::DBI as you see fit, your
13    code becomes more useful by size. Most of us end up using at least a
14    couple Class::DBI extensions in our programs, and it's just a pain.
15    Enter the Swiss Army Knife.
16
17    This module is intelligent. It knows how each module is supposed to be
18    used, and which ones override the need to "use base qw[Class::DBI]".
19
20  Tags
21
22    Tags may be specified either by groupings, begining with a colon (":"),
23    or by the name of the module following the "Class::DBI::" prefix.
24
25    Tags are available for all modules in the Class::DBI namepace, where it
26    makes sense to do so, as of the date of this distribution.
27
28    All modules are mentioned without the "Class::DBI::" prefix for brevity.
29
30   Groups
31
32    ":all"
33        All the modules specified in this module. This couldn't possibly be
34        useful to the end user (you) since so many of them conflict.
35
36    ":useful"
37        Modules that are generally useful all the time. AbstractSearch,
38        Join, Pager. This is the default if no tags are given at all.
39
40    ":mysql"
41        Modules for widened support for Mysql. mysql, mysql::FullTextSearch.
42
43   Modules
44
45    Extension
46    FromCGI
47    Pg
48    Replication
49    SQLite
50BUGS
51    First, this module could get out of date easily. This is due to the
52    nature of the uses of each of the modules. They are not consistent, so I
53    have to know about each one. Please submit a bug report if you find this
54    module out of date.
55
56    Second, no known bugs.
57
58    Send bug reports to http://rt.cpan.org/
59
60AUTHOR
61    Casey West, <casey@geeknest.com>
62
63COPYRIGHT
64    Copyright (c) 2003 Casey West. All rights reserved. This program is free
65    software; you may redistribute it and/or modify it under the same terms
66    as Perl itself.
67
68SEE ALSO
69    the perl manpage, the Class::DBI manpage.
70
71