zoukankan      html  css  js  c++  java
  • [Java] JDBC 03 TestPrepStmt.java

    JDBC 进阶 
    import java.sql.*;
    
    public class TestPrepStmt {
    
        public static void main(String[] args) {
            if (args.length != 3) {
                System.out.println("Parameter Error! Please Input Again!");
                System.exit(-1);
            }
    
            int deptno = 0;
    
            try {
                deptno = Integer.parseInt(args[0]);
            } catch (NumberFormatException e) {
                System.out
                        .println("Parameter Error! Deptno should be Number Format!");
                System.exit(-1);
            }
    
            String dname = args[1];
            String loc = args[2];
    
            PreparedStatement pstmt = null;
            Connection conn = null;
            try {
                Class.forName("com.mysql.jdbc.Driver");
    
                conn = DriverManager
                        .getConnection("jdbc:mysql://localhost/mydata?user=root&password=root");
                pstmt = conn.prepareStatement("insert into dept2 values (?, ?, ?)");
                pstmt.setInt(1, deptno);
                pstmt.setString(2, dname);
                pstmt.setString(3, loc);
                pstmt.executeUpdate();
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            } catch (SQLException e) {
                e.printStackTrace();
            } finally {
                try {
                    if (pstmt != null) {
                        pstmt.close();
                        pstmt = null;
                    }
                    if (conn != null) {
                        conn.close();
                        conn = null;
                    }
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
        }
    
    }
    

  • 相关阅读:
    platform_device和platform_driver
    理解和认识udev
    platform_device和platform_driver
    bzImage的概要生成过程
    shell 字符表
    分析mtk6516如何加入自己的驱动
    理解和使用Linux的硬件抽象层HAL
    bzImage的概要生成过程
    理解和认识udev
    shell 字符表
  • 原文地址:https://www.cnblogs.com/robbychan/p/3786873.html
Copyright © 2011-2022 走看看