NAME

Class::PObject::Driver::DB_File - DB_File PObject driver

SYNOPSIS

use Class::PObject;
pobject Article => {
    columns => ['id', 'title', 'author', 'content'],
    driver  => 'DB_File',
    datasource => './data'
};

DESCRIPTION

Class::PObject::Driver::DB_File is a direct subclass of LClass::PObject::Driver::DBM.

METHODS

Class::PObject::Driver::DB_File only provides dbh() method

  • dbh($self, $pobject_name, \%properties) - returns a reference to a hash tied to a database.

SEE ALSO

Class::PObject::Driver Class::PObject::Driver::DBM

AUTHOR

Sherzod B. Ruzmetov, <sherzodr@cpan.org>, http://author.handalak.com/

COPYRIGHT AND LICENSE

Copyright 2003 by Sherzod B. Ruzmetov.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.