line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package App::FTNDB; |
2
|
2
|
|
|
2
|
|
18550
|
use App::Cmd::Setup -app; |
|
2
|
|
|
|
|
58162
|
|
|
2
|
|
|
|
|
12
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
=head1 NAME |
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
App::FTNDB - Administration of SQL databases for Fidonet/FTN processing. |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 VERSION |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Version 0.39 |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=cut |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
our $VERSION = '0.39'; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
This is the top level Perl extension for the administration of databases for |
19
|
|
|
|
|
|
|
Fidonet/FTN related processing. The SQL database engine is one for which a |
20
|
|
|
|
|
|
|
DBD module exists, defaulting to SQLite. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 CONFIGURATION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
See L for information about configuration of the |
26
|
|
|
|
|
|
|
application. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 EXAMPLES |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Given that $CFGFILE is a configuration file, the following command line can be |
32
|
|
|
|
|
|
|
used to drop an FTN database table FTNTable: |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
C |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Robert James Clay, C<< >> |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=head1 BUGS |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
Please report any bugs or feature requests via the web interface at |
45
|
|
|
|
|
|
|
L. I will be notified, |
46
|
|
|
|
|
|
|
and then you'll automatically be notified of progress on your bug |
47
|
|
|
|
|
|
|
as I make changes. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
Note that you can also report any bugs or feature requests to |
50
|
|
|
|
|
|
|
C, or through the web interface at |
51
|
|
|
|
|
|
|
L; |
52
|
|
|
|
|
|
|
however, the ftndb Issue tracker is preferred. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head1 SUPPORT |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command. |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
perldoc App::FTNDB |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
You can also look for information at: |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=over 4 |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
=item * FTN Database application issue tracker |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
L |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
L |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=item * Search CPAN |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
L |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=back |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head1 SEE ALSO |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
L, L, L, L, L, |
83
|
|
|
|
|
|
|
L, L, L, L |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Copyright 2012-2013 Robert James Clay, all rights reserved. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
90
|
|
|
|
|
|
|
under the same terms as Perl itself. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=cut |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
1; |