当前位置: 代码迷 >> Java Web开发 >> mybatis 传参查询急解决方法
  详细解决方案

mybatis 传参查询急解决方法

热度:5199   发布时间:2013-02-25 21:05:29.0
mybatis 传参查询急!
本帖最后由 hjnsst 于 2013-01-11 17:32:24 编辑
Map<String,Object> m=new HashMap<String,Object>();
if (name !=null&&name != "")
m.put("name", name);
m.put("start", p.getStart());
m.put("max", p.getPageSize());
List<Employee> list=employeeMapper.getListPage(m);

-------------------->

<select id="getListPage" parameterType="map" resultMap="employeeMap">
        <![CDATA[
            select * from employee t1 join dept t2 on(t1.deptNo=t2.deptNo)
            where
            <if test="name != null"> t1.name = #{name}</if>
            ORDER BY t1.id desc limit #{start}, #{max}
        ]]>
    </select>


org.springframework.jdbc.BadSqlGrammarException
### Error querying database.  Cause: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<if test="name!=null"> t1.name = null</if>
            ORDER BY t1.id desc limit' at line 3
### The error may exist in com/employee/dao/EmployeeMapper.xml
### The error may involve com.employee.dao.EmployeeMapper.getListPage-Inline
### The error occurred while setting parameters
### SQL: select * from employee t1 join dept t2 on(t1.deptNo=t2.deptNo)             where             <if test="name!=null"> t1.name = ?</if>             ORDER BY t1.id desc limit ?, ?
### Cause: com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<if test="name!=null"> t1.name = null</if>
            ORDER BY t1.id desc limit' at line 3
; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<if test="name!=null"> t1.name = null</if>
            ORDER BY t1.id desc limit' at line 3
org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:233)
  相关解决方案