如果您提交數(shù)據(jù)庫,它將保存到該特定點之前所做的所有更改。
您可以使用 commit() 方法提交數(shù)據(jù)庫。每當(dāng)發(fā)生任何問題時,您都可以使用 rollback() 方法將數(shù)據(jù)庫恢復(fù)到此時。默認情況下,某些數(shù)據(jù)庫會自動提交數(shù)據(jù)庫。但是,在管理事務(wù)時,您需要手動提交數(shù)據(jù)庫。
在這種情況下,您可以使用 setAutoCommit() 方法。此方法屬于 Connection 接口,它接受一個布爾值。
如果您將 true 傳遞給此方法,它將打開數(shù)據(jù)庫的自動提交功能,如果您將 false 傳遞給此方法,它將打開數(shù)據(jù)庫的自動提交功能。關(guān)閉數(shù)據(jù)庫的自動提交功能。
您可以使用此方法關(guān)閉數(shù)據(jù)庫的自動提交功能:
Con.setAutoCommit(false);
登錄后復(fù)制
示例
以下程序使用批處理將數(shù)據(jù)插入到該表中。這里我們將自動提交設(shè)置為 false,將所需的語句添加到批處理中,執(zhí)行批處理,然后自行提交數(shù)據(jù)庫。
import java.sql.Connection; import java.sql.DriverManager; import java.sql.Statement; public class BatchProcessing_Statement { public static void main(String args[])throws Exception { //Getting the connection String mysqlUrl = "jdbc:mysql://localhost/sampleDB"; Connection con = DriverManager.getConnection(mysqlUrl, "root", "password"); System.out.println("Connection established......"); //CREATE TABLE Dispatches( Product_Name VARCHAR(255), Name_Of_Customer VARCHAR(255), Month_Of_Dispatch VARCHAR(255), Price INT, Location VARCHAR(255)); //Creating a Statement object Statement stmt = con.createStatement(); //Setting auto-commit false con.setAutoCommit(false); //Statements to insert records String insert1 = "INSERT INTO Dispatches( Product_Name , Name_Of_Customer , " + "Month_Of_Dispatch , Price, Location) VALUES " + "('KeyBoard', 'Amith', 'January', 1000, 'hyderabad')"; String insert2 = "INSERT INTO Dispatches( Product_Name , Name_Of_Customer , " + "Month_Of_Dispatch , Price, Location) VALUES " + "('Earphones', 'SUMITH', 'March', 500, 'Vishakhapatnam')"; String insert3 = "INSERT INTO Dispatches( Product_Name , Name_Of_Customer , " + "Month_Of_Dispatch , Price, Location) VALUES " + "('Mouse', 'Sudha', 'September', 200, 'Vijayawada')"; //Adding the statements to the batch stmt.addBatch(insert1); stmt.addBatch(insert2); stmt.addBatch(insert3); //Executing the batch stmt.executeBatch(); //Saving the changes con.commit(); System.out.println("Records inserted......"); } }
登錄后復(fù)制
輸出
Connection established...... Records inserted......
登錄后復(fù)制
以上就是JDBC 中 setAutoCommit() 方法有什么用?的詳細內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!