The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Class::ReluctantORM::Manual::Drivers - Database Independence

OVERVIEW

Drivers in Class::ReluctantORM encapsulate all RDBMS-specific behavior. They provide SQL rendering and execution services. They are also responsible for determining how suitable they are for a given RDBMS and performing schema introspection, such as reading column names from the database.

DRIVER SELECTION

Driver selection happens at compile-time, as your model classes are loaded. When YourClass->build_class

SCHEMA INTROSPECTION

RENDERING SQL

EXECUTION AND RETREIVAL

PARSING