Hi,
just that.
Im using propel.
REgards
Javi
Hi,
just that.
Im using propel.
REgards
Javi
Your question is unclear, but if what you want is to what what SQL code your propel objects are generating for MySQL, try something like this
$c = new Criteria();
$c->add(....);
$c->addJoin(...);
etc
to see the code generated, you call
echo $c->toString();