.addParameter("val", "hello").addToBatch()
.executeBatch();
Table table = sql2o.createQuery("select * from issue4table").executeAndFetchTable();
Row row0 = table.rows().get(0);
String row0Val = row0.getString("vAl");
assertEquals("something", row0Val);
Row row1 = table.rows().get(1);