Kohana 3 ORM tutorial and samples
June 25th, 2011 | Kohana | 6 Comments »ORM allows pushing and pulling of data from the database without the need of typing long sql statements. It turns database queries into objects.
How do you implement it in Kohana?
To get started, enable the module in bootstrap. Open bootstap.php and uncomment database and orm.
Kohana::modules(array( 'database' => MODPATH.'database', 'orm' => MODPATH.'orm', ));