zoukankan      html  css  js  c++  java
  • [Java] TestMysqlConnection ( Java 连接 mysql 初步)

    import java.sql.*;
    
    public class TestMysqlConnection {
    
        public static void main(String[] args) {
            Connection conn = null;
            Statement stmt = null;
            ResultSet rs = null;
            try {
                Class.forName("com.mysql.jdbc.Driver");
                System.out.println("HERE");
                conn = DriverManager.getConnection("jdbc:mysql://localhost/mydata?user=root&password=root");
                System.out.println("HERE");
                stmt = conn.createStatement();
                rs = stmt.executeQuery("select * from dept");
                while (rs.next()) {
                    System.out.println(rs.getString("deptno"));
                }
    
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            } catch (SQLException ex) {
                // handle any errors
                System.out.println("SQLException: " + ex.getMessage());
                System.out.println("SQLState: " + ex.getSQLState());
                System.out.println("VendorError: " + ex.getErrorCode());
            } finally {
                try {
                    if (rs != null) {
                        rs.close();
                        rs = null;
                    }
                    if (stmt != null) {
                        stmt.close();
                        stmt = null;
                    }
                    if (conn != null) {
                        conn.close();
                        conn = null;
                    }
                } catch (SQLException e) {
                    e.printStackTrace();
                }
            }
    
        }
    
    }
    

  • 相关阅读:
    paraview添加vector
    origin横纵坐标颠倒
    [转] python提取计算结果的最大最小值及其坐标
    康奈尔大学CFD课程
    anaconda多环境配置
    mfix的Negative gas density报错解决
    python基础补漏-01
    ssh 公钥登陆的问题
    多进程
    关于GIL
  • 原文地址:https://www.cnblogs.com/robbychan/p/3786881.html
Copyright © 2011-2022 走看看