美文网首页
queryForList的用法

queryForList的用法

作者: fanjunguo | 来源:发表于2018-05-29 23:26 被阅读0次
    public List queryForList(String sql,         // 查询用的sql语句
                             Object[] args,      // sql句中的 参数
                             int[] argTypes,     // sql语句中参数的类型,取自于java.sql.Types
                             Class elementType)  // 在结果列表中的参数类型,例如Integer.Class
    //应用示例如下
    List<Map<String, Object>> rs = jdbcTemplate.queryForList("select * from table where username=? and passworid=?",new Object[]{user,pass});
    

    相关文章

      网友评论

          本文标题:queryForList的用法

          本文链接:https://www.haomeiwen.com/subject/ueuzjftx.html