Jdbc 查詢操作
阿新 • • 發佈:2018-11-08
//1.查詢一行資料並返回int型結果 jdbcTemplate.queryForInt("select count(*) from test"); //2. 查詢一行資料並將該行資料轉換為Map返回 jdbcTemplate.queryForMap("select * from test where name='name5'"); //3.查詢一行任何型別的資料,最後一個引數指定返回結果型別 jdbcTemplate.queryForObject("select count(*) from test", Integer.class); //4.查詢一批資料,預設將每行資料轉換為Map jdbcTemplate.queryForList("select * from test"); //5.只查詢一列資料列表,列型別是String型別,列名字是name jdbcTemplate.queryForList(" select name from test where name=?", new Object[]{"name5"}, String.class); //6.查詢一批資料,返回為SqlRowSet,類似於ResultSet,但不再繫結到連線上 SqlRowSet rs = jdbcTemplate.queryForRowSet("select * from test");