Update 2011/05/22: I take back my words. db->query()
calls return FALSE
on failure, and the error messages can be accessed via the "private" methods _error_message()
(CI doesn't have language-enforced private methods; they are only indicated as such by naming convention and @access
doc.).
For a recent ...
Some time back, I wrote a library-helper for CodeIgniter that brings Django/Jinja template inheritance to CI views. There are a couple of implementations out there, but I decided to write my own as an exercise mostly, but also to keep closer to the original syntax and style.
It works ...