NAME
DBI::Easy - ORM made easy.
SYNOPSIS
package Entity::Passport;
use Class::Easy;
use DBI::Easy::Record;
use base qw(DBI::Easy::Record);
# -=-=-=-=-=-=-=-=-=-=-=-=-=-=-
package main;
use Class::Easy;
# connect to database
use Entity::Passport;
# create new record in memory
my $passport = Entity::Passport->new ({
code => '125434534'
});
# insert into database
$passport->save;
METHODS
new
TODO
AUTHOR
Ivan Baktsheev, <apla at the-singlers.us>
BUGS
Please report any bugs or feature requests to my email address, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=DBI-Easy. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2007-2009 Ivan Baktsheev
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.