For this purpose lets assume that I'm using procedure:
exec test
Where test procedure return more than ONE result set. In JDBC I will use approach that is proposed in this tread Queries returning multiple result sets - and it works fine.
Question is is there any option to map this using JDBI into object ? If I use such approach in DOA class:
@SqlQuery("exec test")
@RegisterBeanMapper(UserMapper.class)
List<TestModel> getTests();
Only the first result set will be mapped second won't be even touch ? Any ideas here