Hello
I'm using the SQL mapper to insert a number of records that I want to wrap in a single commit scope. However the mapper actions seem to ignore the rollback in my test code:
$db->begin();
$f3->set('mapper',new mapper($db,'my_table'));
$f3->get('mapper')->copyFrom($someData);
$f3->get('mapper')->insert();
$db->rollback();
Running snipper above a record is inserted.
Does the mapper support a transaction scope?
Matt