http://qs1969.pair.com?node_id=800995


in reply to Help Me Name DBIx::Connector Methods

$obj->run(sub {}) $obj->run(-txn => 1, sub {}); $obj->run(-svp => 1, sub {}); $obj->run(-retry => 1, sub {}); $obj->run(-txn => 1, -retry => 1, sub {}); ...
or even set the options separately:
$obj->runopts(-txn => 1, -retry => 1); $obj->run(sub {});