public class TestH2ChainProcedure extends TestCaseH2 {
public void xtestBatch() throws Exception {
FakeUserCommand stmt = new FakeUserCommand(dbm.getConnection(), "select count(*) from uri");
Rows rows = stmt.execQuery();
rows.next();
System.out.println("count:" + rows.getInt(1));
}