So is it possible to set the starting point in MySQL LIMIT via the doctrine?
All I know is how to setMaxResults()...
You should use Query::setFirstResult($offset). See more here.
Query::setFirstResult($offset)