so I’ve been using Zend Pagination, and I don’t like the fact that I have to keep on using the Zend_DB_Select object to paginate things…
I want to just use a raw select query
"SELECT * FROM db etc etc"
and then pass that query into zend pagination without converting it to zend db select
is it possible to do so?
If you dislike
Zend_DB_Selectfor your pagination, no-one stops you from writing what you want as your ownZend_Paginator_Adapter_Interface. See Zend Pagination Advanced Usage, but take care you do not reinvent the wheel.