Is there any way to select/update/delete dynamically using Ibatis/MyBatis?

When I say "dynamically" it means I don't want to create any POJO/DataMapper at all.

Any URL example would be welcomed.

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Yes, just set the resultType attribute to map and the table data will be placed into a HashMap of column names to values. If the query returns more than 1 row, the mapped rows will be put into a List. If you want to select a single column, you can get just that value (as String, int, etc) or as a list.

<select id="test1" resultType="map">select * from user</select>
<select id="test2" resultType="map" parameterType="int">
  select * from user where id=#{value}</select>
<select id="test3" resultType="string">select name from user</select>
...
// returns a list of maps
List test = sqlSession.selectList("test1");

// returns a single map
Object map = sqlSession.selectOne("test2", 0);

// returns a list of strings
List names = sqlSession.selectList("test3");

This applies to MyBatis 3; I think you can do something similar in iBatis 2.

link|improve this answer
The first one and third looks the same... – Rudy Jul 6 '11 at 2:10
The difference is between select * and select name, assuming name is VARCHAR. It doesn't have to be *, but as long as you need more than 1 column, the resultType should be map (or a Pojo). If you are only selecting 1 column, set the resultType to whatever the column type is. – AngerClown Jul 6 '11 at 2:15
feedback

Yes, it should be possible to build the mapping in runtime through an API, and to use Maps instead of entity classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.