ORLite
Overview
ORLite is a perl module that interfaces with SQLite. It is considered a light-weight ORM specific to SQLite.
Example - Query MojoMojo Person Table
An example is worth 1,000 droning pedantic mono-logues:
use Modern::Perl; use ORLite '../../db/mojomojo.db'; my @people = Person->select( 'where login like ?', '%hunter%', ); foreach my $person (@people) { say $person->name; }
Showing changes from previous revision. Removed | Added
