}
public void xtestBlobInsertBatch() throws Exception {
IUserCommandBatch command = dc.createUserCommandBatch("insert into aaa## values(?,?,?,?)") ;
command.addParam(0, new int[]{1,2,3}); ;
command.addParamSize(1, "abcdefg", 3); ;
command.addClobSize(2, getLongString(), 3);
command.addBlobSize(3, "c:/temp/article.csv", 3);
int result = command.execUpdate() ;