use of com.ibatis.sqlmap.client.event.RowHandler in project druid by alibaba.
the class SqlMapClientWrapperTest method test_wrap.
public void test_wrap() throws Exception {
SqlMapClientImpl client = (SqlMapClientImpl) context.getBean("master-sqlMapClient");
Assert.assertNotNull(client);
SqlMapClientWrapper wrapper = new SqlMapClientWrapper(client);
wrapper.insert("User.insert", new User(12345678, "aaa"));
{
Exception error = null;
try {
wrapper.insert("User.insert");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
wrapper.update("User.update", new User(12345678, "bbb"));
{
Exception error = null;
try {
wrapper.update("User.update");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
Assert.assertNotNull((User) wrapper.queryForObject("User.select"));
Assert.assertNotNull((User) wrapper.queryForObject("User.select", Collections.emptyMap()));
Assert.assertNotNull((User) wrapper.queryForObject("User.select", Collections.emptyMap(), new User()));
Assert.assertEquals(1, wrapper.queryForList("User.select").size());
Assert.assertEquals(1, wrapper.queryForList("User.select", Collections.emptyMap()).size());
Assert.assertEquals(1, wrapper.queryForList("User.select", Collections.emptyMap(), 0, 2).size());
wrapper.queryWithRowHandler("User.select", new RowHandler() {
@Override
public void handleRow(Object valueObject) {
}
});
wrapper.queryWithRowHandler("User.select", Collections.emptyMap(), new RowHandler() {
@Override
public void handleRow(Object valueObject) {
}
});
Assert.assertEquals(1, wrapper.queryForPaginatedList("User.select", 10).size());
Assert.assertEquals(1, wrapper.queryForPaginatedList("User.select", Collections.emptyMap(), 10).size());
Assert.assertNotNull(wrapper.queryForMap("User.select", Collections.emptyMap(), "id"));
Assert.assertNotNull(wrapper.queryForMap("User.select", Collections.emptyMap(), "id", "name"));
wrapper.delete("User.delete", 12345678L);
{
Exception error = null;
try {
wrapper.delete("User.delete");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
wrapper.startBatch();
wrapper.executeBatch();
wrapper.executeBatchDetailed();
}
use of com.ibatis.sqlmap.client.event.RowHandler in project druid by alibaba.
the class SqlMapExecutorWrapperTest_2 method test_wrap.
public void test_wrap() throws Exception {
SqlMapClientImpl client = (SqlMapClientImpl) context.getBean("master-sqlMapClient");
Assert.assertNotNull(client);
SqlMapExecutorWrapper wrapper = new SqlMapExecutorWrapper(client, client);
wrapper.insert("User.insert", new User(12345678, "aaa"));
{
Exception error = null;
try {
wrapper.insert("User.insert");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
wrapper.update("User.update", new User(12345678, "bbb"));
{
Exception error = null;
try {
wrapper.update("User.update");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
Assert.assertNotNull((User) wrapper.queryForObject("User.select"));
Assert.assertNotNull((User) wrapper.queryForObject("User.select", Collections.emptyMap()));
Assert.assertNotNull((User) wrapper.queryForObject("User.select", Collections.emptyMap(), new User()));
Assert.assertEquals(1, wrapper.queryForList("User.select").size());
Assert.assertEquals(1, wrapper.queryForList("User.select", Collections.emptyMap()).size());
Assert.assertEquals(1, wrapper.queryForList("User.select", Collections.emptyMap(), 0, 2).size());
wrapper.queryWithRowHandler("User.select", new RowHandler() {
@Override
public void handleRow(Object valueObject) {
}
});
wrapper.queryWithRowHandler("User.select", Collections.emptyMap(), new RowHandler() {
@Override
public void handleRow(Object valueObject) {
}
});
Assert.assertEquals(1, wrapper.queryForPaginatedList("User.select", 10).size());
Assert.assertEquals(1, wrapper.queryForPaginatedList("User.select", Collections.emptyMap(), 10).size());
Assert.assertNotNull(wrapper.queryForMap("User.select", Collections.emptyMap(), "id"));
Assert.assertNotNull(wrapper.queryForMap("User.select", Collections.emptyMap(), "id", "name"));
wrapper.delete("User.delete", 12345678L);
{
Exception error = null;
try {
wrapper.delete("User.delete");
} catch (Exception ex) {
error = ex;
}
Assert.assertNotNull(error);
}
wrapper.startBatch();
wrapper.executeBatch();
wrapper.executeBatchDetailed();
}
Aggregations