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
DataSource::Driver(3) User Contributed Perl Documentation DataSource::Driver(3)

DBIx::DataSource::Driver - Driver Writer's Guide and base class

  perldoc DBIx::DataSource::Driver;

  or

  package DBIx::DataSource::FooBase;
  use DBIx::DataSource::Driver;
  @ISA = qw( DBIx::DataSource::Driver );

To implement a driver for your database:

1) If you can create a database with an SQL command through DBI/DBD, simply provide a parse_dsn class method which returns a list consisting of the *actual* data source to use in DBI->connect and the SQL.

       package DBIx::DataSource::NewDatabase;
       use DBIx::DataSource::Driver;
       @ISA = qw( DBIx::DataSource::Driver );

       sub parse_dsn {
         my( $class, $action, $dsn ) = @_;

         # $action is `create' or `drop'
         # for example, if you parse parse $dsn for $database,
         # $sql = "$action $database";

         # you can die on errors - it'll be caught

         ( $new_dsn, $sql );
       }

2) Otherwise, you'll need to write create_database and drop_database class methods.

       package DBIx::DataSource::NewDatabase;

       sub create_database {
         my( $class, $dsn, $user, $pass ) = @_;

         # for success, return true
         # for failure, die (it'll be caught)
       }

       sub drop_database {
         my( $class, $dsn, $user, $pass ) = @_;

         # for success, return true
         # for failure, die (it'll be caught)
       }

Ivan Kohler <ivan-dbix-datasource@420.am>

Copyright (c) 2000 Ivan Kohler Copyright (c) 2000 Mail Abuse Prevention System LLC All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

DBIx::DataSource, DBIx::DataSource::mysql, DBIx::DataSource::Pg, DBI
2000-09-25 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.