解決getJdbcTemplate往oracle資料庫中插入資料返回主鍵出錯問題

來源:互聯網
上載者:User

標籤: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的差別,大家能夠在網上查閱相關文檔進行瞭解!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.