views:

19

answers:

1

Hi,

just that.

Im using propel.

REgards

Javi

A: 

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();
sjobe