| … | |
… | |
| 26 | use strict; |
26 | use strict; |
| 27 | use warnings; |
27 | use warnings; |
| 28 | use DBI; |
28 | use DBI; |
| 29 | |
29 | |
| 30 | use constant STYLE => "dbi"; |
30 | use constant STYLE => "dbi"; |
|
|
31 | |
|
|
32 | =head1 SOURCE FORMAT |
|
|
33 | |
|
|
34 | The C<source> entry for tables handled by this driver should consist of a DBI |
|
|
35 | data source. |
|
|
36 | |
|
|
37 | =head1 SUPPORTED PARAMS |
|
|
38 | |
|
|
39 | This driver pays attention to the following items in the C<params> entry. |
|
|
40 | |
|
|
41 | =over |
|
|
42 | |
|
|
43 | =item usernameRO, passwordRO |
|
|
44 | |
|
|
45 | Username and password for read-only access to SQL database. |
|
|
46 | |
|
|
47 | =item usernameRW, passwordRW |
|
|
48 | |
|
|
49 | Username and password for read-write access to SQL database. |
|
|
50 | |
|
|
51 | =back |
|
|
52 | |
|
|
53 | =cut |
| 31 | |
54 | |
| 32 | ################################################################################ |
55 | ################################################################################ |
| 33 | # constructor |
56 | # constructor |
| 34 | ################################################################################ |
57 | ################################################################################ |
| 35 | |
58 | |