We'd like to use only annotations with MyBatis; we're really trying to avoid xml. We're trying to use an "IN" clause:

@Select("SELECT * FROM blog WHERE id IN (#{ids})") 
List<Blog> selectBlogs(int[] ids); 

MyBatis doesn't seem able to pick out the array of ints and put those into the resulting query. It seems to "fail softly" and we get no results back.

It looks like we could accomplish this using XML mappings, but we'd really like to avoid that. Is there a correct annotation syntax for this?

link|improve this question

78% accept rate
Normal SQL requires dynamic SQL to use a variable that represents a comma separated list of values. – OMG Ponies Aug 7 '10 at 1:27
@OMG Ponies: My apologies, I'm not sure what you're trying to say? If I were to take your wisdom and apply it to this problem, what would my solution look like specifically? – dirtyvagabond Aug 7 '10 at 1:37
I've never worked with iBatis, but can you create the SQL statement as a string (including variable contents) before anything else happens? That's all dynamic SQL really is... – OMG Ponies Aug 7 '10 at 1:42
feedback

3 Answers

up vote 5 down vote accepted

I believe this is a nuance of jdbc's prepared statements and not MyBatis. There is a link here that explains this problem and offers various solutions. Unfortunately, none of these solutions are viable for your application, however, its still a good read to understand the limitations of prepared statements with regards to an "IN" clause. A solution (maybe suboptimal) can be found on the DB-specific side of things. For example, in postgresql, one could use:

"SELECT * FROM blog WHERE id=ANY(#{blogIds}::int[])"

"ANY" is the same as "IN" and "::int[]" is type casting the argument into an array of ints. The argument that is fed into the statement should look something like:

"{1,2,3,4}"
link|improve this answer
The JavaRanch link presents an interesting idea of breaking the array into multiple chunks and executing batches. This is not postgres specific and could be implemented in iBatis with a TypeHandler like @pevgen's suggestion. – AngerClown Dec 17 '10 at 18:30
In MySQL, use the following query, passing "blogIds" as a String with the ids separated by comma: "SELECT * FROM blog WHERE FIND_IN_SET(id, #{blogIds}) <> 0" – italo Feb 9 at 4:52
feedback

I've made a small trick in my code.

public class MyHandler implements TypeHandler {

public void setParameter(PreparedStatement ps, int i, Object parameter, JdbcType jdbcType) throws SQLException {
    Integer[] arrParam = (Integer[]) parameter;
    String inString = "";
    for(Integer element : arrParam){
      inString = "," + element;
    }
    inString = inString.substring(1);        
    ps.setString(i,inString);
}

And I used this MyHandler in SqlMapper :

    @Select("select id from tmo where id_parent in (#{ids, typeHandler=ru.transsys.test.MyHandler})")
public List<Double> getSubObjects(@Param("ids") Integer[] ids) throws SQLException;

It works now :) I hope this will help someone.

Evgeny

link|improve this answer
You are creating a single big String with all the values in it. Does this require casting on the DB? Not sure if this would work on all DBs. – AngerClown Dec 17 '10 at 18:33
Thank's for your comment. You are right. I made it to the DB Oracle only. – pevgen Dec 20 '10 at 10:31
feedback

Other option can be

    public class Test
    {
        @SuppressWarnings("unchecked")
        public static String getTestQuery(Map<String, Object> params)
        {

            List<String> idList = (List<String>) params.get("idList");

            StringBuilder sql = new StringBuilder();

            sql.append("SELECT * FROM blog WHERE id in (");
            for (String id : idList)
            {
                if (idList.indexOf(id) > 0)
                    sql.append(",");

                sql.append("'").append(id).append("'");
            }
            sql.append(")");

            return sql.toString();
        }

        public interface TestMapper
        {
            @SelectProvider(type = Test.class, method = "getTestQuery")
List<Blog> selectBlogs(@Param("idList") int[] ids);
        }
    }
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.