I have an application that uses myBatis. I do not want to convert the resultset from mybatis to a Java object. So essentially I do not want a mapped object. I just want the resultset. Is it possible to get that from myBatis? Something like:
Resultset resultset = mybatisMapper.getResults();
I already have a program which processes this Resultset and I cannot change that program.