java – PreparedStatement:如何使用JDBC将数据插入到多个表中

前端之家收集整理的这篇文章主要介绍了java – PreparedStatement:如何使用JDBC将数据插入到多个表中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有人能告诉我是否第一个stmt.close();以下JDBC代码中是否需要针对两个不同的表执行两个不同的SQL查询
public class MyService {
    private Connection connection = null;

    public void save(Book book) {
        try {
            Class.forName("com.MysqL.jdbc.Driver");
            connection = DriverManager.getConnection("jdbc:MysqL://localhost:3306/mydb","root","password"); 

            PreparedStatement stmt = connection.prepareStatement("INSERT INTO PUBLISHER (CODE,PUBLISHER_NAME) VALUES (?,?)");
            stmt.setString(1,book.getPublisher().getCode());   
            stmt.setString(2,book.getPublisher().getName());           
            stmt.executeUpdate();

            stmt.close(); //1

            stmt = connection.prepareStatement("INSERT INTO BOOK (ISBN,BOOK_NAME,PUBLISHER_CODE) VALUES (?,?,book.getIsbn());  
            stmt.setString(2,book.getName());
            stmt.setString(3,book.getPublisher().getCode());
            stmt.executeUpdate();

            stmt.close(); //2       
        } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (sqlException e) { e.printStackTrace(); } 
        finally { connection.close(); }         
    }
}

解决方法

在我的书中,我总是建议关闭已经打开的资源以避免可能的泄漏.

稍微更现代的方式是使用try-with-resources

try (Connection connection = DriverManager.getConnection("jdbc:MysqL://localhost:3306/mydb","password")) {

    try (PreparedStatement stmt = connection.prepareStatement("INSERT INTO PUBLISHER (CODE,?)")) {
        stmt.setString(1,book.getPublisher().getCode());   
        stmt.setString(2,book.getPublisher().getName());           
        stmt.executeUpdate();
    }
    // stmt is auto closed here,even if sqlException is thrown

    try (PreparedStatement stmt = connection.prepareStatement("INSERT INTO BOOK (ISBN,?)");
        stmt.setString(1,book.getIsbn());  
        stmt.setString(2,book.getName());
        stmt.setString(3,book.getPublisher().getCode());
        stmt.executeUpdate();
    }
    // stmt is auto closed here,even if sqlException is thrown
}
// connection is auto closed here,even if sqlException is thrown
原文链接:https://www.f2er.com/java/126924.html

猜你在找的Java相关文章