您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Java操作數(shù)據(jù)庫的方法是什么”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
在本次事務(wù)的執(zhí)行過程當(dāng)中,我們指定的記錄被查詢,在我查詢的過程當(dāng)中記錄就會被鎖定,任何人,任何事務(wù)都不能對我指定查詢數(shù)據(jù)進(jìn)行修改操作(不能改,但是可以看),直到我都查詢結(jié)束。
//sql指令 String sql = "select * from t_shuihuo where id < ? for update ";
package com.luosf.jdbc; import com.luosf.jdbc.utils.JdbcUtil; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; /** * JDBC中鎖的使用 * for updata */ public class JdbcLock { public static void main(String[] args) { Connection conn = null; PreparedStatement stat = null; ResultSet res = null; try { //創(chuàng)建驅(qū)動(dòng) //獲取數(shù)據(jù)庫對象 conn = JdbcUtil.getConnection(); //sql指令 String sql = "select * from t_shuihuo where id < ? for update "; conn.setAutoCommit(false);//開啟事務(wù) //3,sql語句進(jìn)行編譯 stat = conn.prepareStatement(sql); //給占位符填充值 //JDBC下標(biāo)從1開始的 stat.setInt(1,16); //1,代表第一個(gè)問號 Thread.sleep(1000*10); //模擬訪問時(shí)間 //4,執(zhí)行sql res = stat.executeQuery(); //5,處理查詢結(jié)果集 while (res.next()){ int id = res.getInt("id"); String name = res.getString("name"); String nickname = res.getString("nickname"); System.out.println("id :"+ id + " name :" +name + " 昵稱 :"+nickname); } conn.commit();//提交事務(wù) } catch (SQLException throwables) { try { if (conn != null){ conn.rollback(); //回滾事務(wù) } } catch (SQLException e) { e.printStackTrace(); } throwables.printStackTrace(); } catch (InterruptedException e) { e.printStackTrace(); } finally{ //釋放資源 JdbcUtil.close(conn,stat,res); } } }
package com.luosf.jdbc; import com.luosf.jdbc.utils.JdbcUtil; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.SQLException; /** * 檢測鎖 */ public class JdbcLockTest { public static void main(String[] args) { Connection conn = null; PreparedStatement stat = null; try { //獲取驅(qū)動(dòng) //獲取數(shù)據(jù)庫鏈接對象 conn = JdbcUtil.getConnection(); //開啟事務(wù) conn.setAutoCommit(false); //鎖開始后進(jìn)行修改數(shù)據(jù) String sql = "update t_shuihuo set name = '小羅' where id = ? "; stat = conn.prepareStatement(sql); stat.setInt(1,10); //1,代表第一個(gè)問號 int cunt = stat.executeUpdate(); System.out.println("更新了"+cunt+"條數(shù)據(jù)"); conn.commit();//提交事務(wù) } catch (SQLException throwables) { try { if (conn != null){ conn.rollback(); } } catch (SQLException e) { e.printStackTrace(); } throwables.printStackTrace(); } finally { //釋放資源 JdbcUtil.close(conn,stat,null); } } }
需要等鎖等待時(shí)間完成才能進(jìn)行修改
“Java操作數(shù)據(jù)庫的方法是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。