use of org.jdbi.v3.core.generic.GenericType in project jdbi by jdbi.
the class TestVavrMapCollectorWithDB method testSingleInstanceAssignmentWithSelectedKeyValue_shouldSucceed.
@Test
public void testSingleInstanceAssignmentWithSelectedKeyValue_shouldSucceed() {
Handle handle = dbRule.getSharedHandle().configure(MapEntryMappers.class, c -> c.setKeyColumn("key_c").setValueColumn("val_c"));
Optional<Tuple2<String, String>> valueMap = handle.createQuery("select val_c, key_c from keyval").mapTo(new GenericType<Tuple2<String, String>>() {
}).findFirst();
assertThat(valueMap).isNotEmpty();
assertThat(valueMap.get()).isEqualTo(Tuple.of(KEY_PREFIX + 0, VAL_PREFIX + 1));
}
use of org.jdbi.v3.core.generic.GenericType in project jdbi by jdbi.
the class TestVavrTupleRowMapperFactoryWithDB method testMapTuple3WithExtraSpecifiedColumn_shouldSucceed.
@Test
public void testMapTuple3WithExtraSpecifiedColumn_shouldSucceed() throws SQLException {
Handle handle = dbRule.getSharedHandle();
handle.registerRowMapper(new SomethingMapper());
handle.configure(TupleMappers.class, c -> c.setColumn(2, "integerValue").setColumn(3, "intValue"));
Tuple3<Something, Integer, Integer> result = handle.createQuery("select * from something where id = 1").mapTo(new GenericType<Tuple3<Something, Integer, Integer>>() {
}).findOnly();
assertThat(result._1).isEqualTo(new Something(1, "eric"));
assertThat(result._2).isEqualTo(99);
assertThat(result._3).isEqualTo(100);
}
use of org.jdbi.v3.core.generic.GenericType in project jdbi by jdbi.
the class TestVavrTupleRowMapperFactoryWithDB method testMapTuple2UsingRegisteredRowMappers_shouldSucceed.
@Test
public void testMapTuple2UsingRegisteredRowMappers_shouldSucceed() throws SQLException {
Handle handle = dbRule.getSharedHandle();
handle.registerRowMapper(new SomethingMapper());
handle.registerRowMapper(SomethingValues.class, (rs, ctx) -> new SomethingValues(rs.getInt("integerValue"), rs.getInt("intValue")));
Tuple2<Something, SomethingValues> result = handle.createQuery("select * from something where id = 2").mapTo(new GenericType<Tuple2<Something, SomethingValues>>() {
}).findOnly();
assertThat(result._1).isEqualTo(new Something(2, "brian"));
assertThat(result._2).isEqualTo(new SomethingValues(101, 102));
}
use of org.jdbi.v3.core.generic.GenericType in project jdbi by jdbi.
the class TestVavrTupleRowMapperFactoryWithDB method testMapTuple2HavingOnlyOneRowMapper_shouldFail.
@Test
public void testMapTuple2HavingOnlyOneRowMapper_shouldFail() throws SQLException {
final Handle handle = dbRule.getSharedHandle();
handle.registerRowMapper(new SomethingMapper());
assertThatThrownBy(() -> handle.createQuery("select * from something where id = 1").mapTo(new GenericType<Tuple2<Something, SomethingValues>>() {
}).findOnly()).isInstanceOf(NoSuchMapperException.class).hasMessageContaining("SomethingValues");
}
use of org.jdbi.v3.core.generic.GenericType in project jdbi by jdbi.
the class TestVavrTupleRowMapperFactoryWithDB method testMapTuple1UsingRegisteredRowMapper_shouldSucceed.
@Test
public void testMapTuple1UsingRegisteredRowMapper_shouldSucceed() throws SQLException {
Handle handle = dbRule.getSharedHandle();
handle.registerRowMapper(new SomethingMapper());
Tuple1<Something> result = handle.createQuery("select id, name from something where id = 1").mapTo(new GenericType<Tuple1<Something>>() {
}).findOnly();
assertThat(result._1).isEqualTo(new Something(1, "eric"));
}
Aggregations