Sử dụng lệnh commit trong JDBC trong Java
Miêu tả vấn đề
Cách commit một truy vấn trong JDBC?
Giải pháp
Ví dụ sau sử dụng phương thức connection.commit() để thực thi một truy vấn trong JDBC.
import java.sql.*; public class jdbcConn { public static void main(String[] args) throws Exception{ Class.forName("org.apache.derby.jdbc.ClientDriver"); Connection con = DriverManager.getConnection ("jdbc:derby://localhost:1527/testDb","name","pass"); Statement stmt = con.createStatement(); String query = "insert into emp values(2,'name1','job')"; String query1 ="insert into emp values(5,'name2','job')"; String query2 = "select * from emp"; ResultSet rs = stmt.executeQuery(query2); int no_of_rows = 0; while (rs.next()) { no_of_rows++; } System.out.println("No. of rows before commit statement = "+ no_of_rows); con.setAutoCommit(false); stmt.execute(query1); stmt.execute(query); con.commit(); rs = stmt.executeQuery(query2); no_of_rows = 0; while (rs.next()) { no_of_rows++; } System.out.println("No. of rows after commit statement = "+ no_of_rows); } }
Kết quả
Code trên sẽ cho kết quả sau. Kết quả có thể rất đa dạng.
No. of rows before commit statement = 1 No. of rows after commit statement = 3
Đã có app VietJack trên điện thoại, giải bài tập SGK, SBT Soạn văn, Văn mẫu, Thi online, Bài giảng....miễn phí. Tải ngay ứng dụng trên Android và iOS.
Theo dõi chúng tôi miễn phí trên mạng xã hội facebook và youtube:Các bạn có thể mua thêm khóa học JAVA CORE ONLINE VÀ ỨNG DỤNG cực hay, giúp các bạn vượt qua các dự án trên trường và đi thực tập Java. Khóa học có giá chỉ 300K, nhằm ưu đãi, tạo điều kiện cho sinh viên cho thể mua khóa học.
Nội dung khóa học gồm 16 chuơng và 100 video cực hay, học trực tiếp tại https://www.udemy.com/tu-tin-di-lam-voi-kien-thuc-ve-java-core-toan-tap/ Bạn nào có nhu cầu mua, inbox trực tiếp a Tuyền, cựu sinh viên Bách Khoa K53, fb: https://www.facebook.com/tuyen.vietjack
Follow facebook cá nhân Nguyễn Thanh Tuyền https://www.facebook.com/tuyen.vietjack để tiếp tục theo dõi các loạt bài mới nhất về Java,C,C++,Javascript,HTML,Python,Database,Mobile.... mới nhất của chúng tôi.
Bài học Bài tập Java phổ biến tại vietjack.com: