標籤:style java 使用 os io 資料 art ar
我們使用Spring中的JdbcDaoSupport往Mysql中插入資料並返回主鍵代碼,我們使用的mysql資料庫,主鍵在資料庫中設定為自增長:該類繼承自JdbcDaoSupport,所以能直接使用getJdbcTemplate()
public int saveUser(String userName,int age,String password){getJdbcTemplate().update(new PreparedStatementCreator() {public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {String sql = "insert into tb_user (username,age,password) " +"values(?,?,?)";PreparedStatement ps = connection.prepareStatement(sql,Statement.RETURN_GENERATED_KEYS);ps.setString(1, userName);ps.setString(2, age);ps.setString(3, password);return ps;}}, keyHolder);Integer generatedId = keyHolder.getKey().intValue();return generatedId;}
當我們資料庫換成oracle資料庫時,因為oracle資料庫採用序列進行ID標識,我們改動對應的sql語句,其它不變:
String sql = "insert into tb_user (id,username,age,password) values(SEQ_ZB_USER.nextval,?,?,?)";
執行後它會拋出異常:oracle資料庫的number類型不能轉換為int類型
換成其它類型也不行,這是由於JdbcDaoSupport中的getJdbcTemplate()不正確oracle支援;
解決方案:繼承Spring中的SimpleJdbcDaoSupport,JdbcDaoSupport能做的,SimpleJdbcDaoSupport基本也能完畢,所以繼承後,使用其getSimpleJdbcTemplate()方法;
public int saveUser(String userName,int age,String password){//設定參數集合,匹配sql語句中的參數MapSqlParameterSource params=new MapSqlParameterSource();params.addValue("userName", userName);params.addValue("age", age);params.addValue("password", password);KeyHolder keyHolder = new GeneratedKeyHolder();String sql = "insert into zb_user (id,username,age,password) " +"values(SEQ_ZB_JC_PLAN.nextval,:userName,:age,:password)";//須要最後一個String集合列表參數,id表示表主鍵,否則也會出問題getSimpleJdbcTemplate().getNamedParameterJdbcOperations().update(sql, params, keyHolder, new String[]{"id"});Integer generatedId = keyHolder.getKey().intValue();return generatedId;}
執行後,成功執行並返回主鍵;
至於JdbcDaoSupport和SimpleJdbcDaoSupport的差別,大家能夠在網上查閱相關文檔進行瞭解!