GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
AddressBook::DB::DBI(3) User Contributed Perl Documentation AddressBook::DB::DBI(3)

AddressBook::DB::DBI - Backend for AddressBook to use in databases

  use AddressBook;
  $a = AddressBook->new(source => "DBI:CSV:f_dir=/tmp/csv",
                        table=>"a_csv",
                        );

The DBI perl library module is required in order to use this package.

AddressBook::DB::DBI supports both sequential and random access backend database methods.

The DBI backend has so far only been tested against the CSV database driver.

AddressBook::DB::DBI behavior can be modified using the following options:

table
Required parameter
key_fields
A list of DBI field names (not cannonical names) which can be used to uniquely identify a database record.
dsn
See constructor details below

The database driver and driver arguments may be specified in in the constructor in one of two ways:
1.
As part of the "source" parameter, for example:

  $a = AddressBook->new(source => "DBI:CSV:f_dir=/tmp/csv",
                        table=>"a_csv",
                        );
    
2.
In a "dsn" parameter, for example:

  $a = AddressBook->new(source => "DBI",
                        dsn=>"CSV:f_dir=/tmp/csv",
                        table=>"a_csv",
                        );
    

Like all AddressBook database constructor parameters, the "dsn" and "table" may also be specified in the configuration file.

For syncronization purposes, all records are timestamped depending on the database driver type:
CSV
All records are timestamped with the modification data of the CSV file.

Mark A. Hershberger, <mah@everybody.org> David L. Leigh, <dleigh@sameasiteverwas.net>

AddressBook AddressBook::Config, AddressBook::Entry.

DBI DBD::CSV

2001-01-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.