What version of the MyBatis are you using?
mybatis3.0
Please describe the problem. Unit tests are best!
The current batch_execution is not flexable,for example:
----------------------------------------
beginTransaction;
drop table tb001;
try{create temporary table tb001;}catch(Exception e){}
insert some data into tb001;
....
drop table tb001;
endTransaction;
----------------------------------------
In this scene,I want to drop the temporary table for safe,but if the
temporary table doesn't exsit,a exception will be thrown ,and it will stop the
batch execution.
What is the expected output? What do you see instead?
I want methods like "startBatch" and "executeBatch",so that I can decide which
sql scripts should be added to batch,and which shouldn't.
Just a advice,thanks.
Please provide any additional information below.
Original issue reported on code.google.com by zhmt...@gmail.com on 17 Sep 2010 at 8:58
Original issue reported on code.google.com by
zhmt...@gmail.com
on 17 Sep 2010 at 8:58