MyBatis is a framework for mapping objects to relational databases with an emphasis on high performance and simplicity.
I've got a postgres table where the ID is defined as bigserial. How can I use @Insert and get back …
annotations ibatis mybatisI have an error when setting a parameter as null. This problem ONLY occurs while using ojdbc14.jar. When using …
java mybatis ojdbcI haven't been able to see anything in the documentation which speaks to my question, and upon deploying it, my …
ibatis mybatis dynamic-queriesI'm trying to insert a list to Mybatis and getting the foloowing error: org.apache.ibatis.binding.BindingException: Parameter '__…
oracle mybatis ibatis spring-mybatisI have two classes where one inherits the other. I'm trying to map my resultSet to the subclass and Mybatis …
java generics mybatisI found several examples how to connect a custom ResultHandler to a MyBatis Query: e.g. https://code.google.com/…
java xml pagination mybatis mapperI'm working with Mybatis 3.2.6 and implementing a custom resulthandler. I've done this before using a simple datatype parameter and have …
java orm mybatis ibatis ibatis.netI have written a standard select and resultMap for a table/object in one mapper.xml file and am wondering …
xml mybatis mapperi have a pojo with some field of type Set<String>. I want to persist them in the …
spring mybatis typehandlerI feel like this is a simple problem, but none of the things i tried work for me. I have …
java enums mybatis enumeration ibatis