In my query using Symfony 1.4/Propel 1.4, for pagination purpose, I need to set limit like
Page1: LIMIT 0,6
Page2: LIMIT 6,6
Page3: LIMIT 12,6
.... & so on
I try
$c->setLimit(6);
Which is generating
LIMIT 6
I didn't find setLimit methods with two parameters or similar function to set starting limit too. This is very common operation & I'm sure must be available in Propel but I'm unable to figure it out till now.
Can someone please suggest how set required limit (LIMIT 0,6)