Having used frameworks with and without ORM, it seems to me that ORM is a redundant layer of abstraction between your models and database wrapper.
Most frameworks have uniform database wrappers for different database software, so changing software usually won't require a change in code.
Is there any real reason to use ORM? It just seems like adding an un-necessary step.