2009-10-13 10:48:44 UTC
Ahh, figured some of this out:
define('P4AAUTODB_SEQUENCES', false);
however this caused problems on some pages - watch out for:
I set my data sources to default with a setWhere to a zero result set as otherwise on large tables hit the performce too much.
Becuase ot his - when you save teh row on a new item the page would go blank. So i had to do a:
$this->source->setWhere("QuoteID = " . GetLastInsertID())
->firstRow();
I think this is sencable - is this the type of thing I needed to do?
Ta
Nick