zoukankan      html  css  js  c++  java
  • java连接mysql数据库

    工程导入mysql-connector-java-5.1.7-bin.jar后;

    public static void main(String[] args)
    {
    // 驱动程序名
    String driver = "com.mysql.jdbc.Driver";
    // URL指向要访问的数据库名scutcs
    String url = "jdbc:mysql://127.0.0.1:3305/test";
    // MySQL配置时的用户名
    String user = "root";
    // MySQL配置时的密码
    String password = "123456";

    try
    {
    // 加载驱动程序
    Class.forName(driver);
    // 连续数据库
    Connection conn = DriverManager.getConnection(url, user, password);
    if(!conn.isClosed())
    {
    System.out.println("Succeeded connecting to the Database!");
    }
    // statement用来执行SQL语句
    Statement statement = conn.createStatement();
    // 要执行的SQL语句
    String sql = "select * from test1";
    String name = null;
    // 结果集
    ResultSet rs = statement.executeQuery(sql);
    while(rs.next())
    {
    // 选择sname这列数据
    name = rs.getString("title");
    // 输出结果
    System.out.println(rs.getString("id") + " " + name);
    }

    rs.close();
    conn.close();
    }
    catch(ClassNotFoundException e)
    {
    System.out.println("Sorry,can`t find the Driver!");
    e.printStackTrace();
    }
    catch(SQLException e)
    {
    e.printStackTrace();
    }
    catch(Exception e)
    {
    e.printStackTrace();
    }
    }

  • 相关阅读:
    Hash详解
    手写2048
    20180429模拟赛T1——添边问题
    题解:UVA1025 A Spy in the Metro
    20180418模拟赛T2——Gym
    20180418模拟赛T1——Seq
    学习:中国剩余定理
    20180414模拟赛T2——拼图
    20180414模拟赛T1——BEAD
    学习:树状数组
  • 原文地址:https://www.cnblogs.com/xiangjune/p/6519641.html
Copyright © 2011-2022 走看看