当前位置:   article > 正文

Java交互Mysql

java交互mysql

Java交互Mysql

下载

下载mysql的java驱动jar包,mysql-connector-java_8.0.12,下载网址,这个是mysql官网的下载地址,根据系统下载相应的版本。
下载驱动

eclipse:工作目录下新建Folder ,把jar文件拖到工作目录,右键jar文件Build Path—>Add to Build Path 一下,项目就可以运行了。
eclipse下添加jar

idea:菜单栏选择File–>Project Structure–>Modules–>Dependencies–>新建一个JARs,指定你下载的驱动包。
idea下添加jar

代码

1、创建数据库

USE test;
CREATE TABLE `websites` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` char(20) NOT NULL DEFAULT '' COMMENT '站点名称',
  `url` varchar(255) NOT NULL DEFAULT '',
  `alexa` int(11) NOT NULL DEFAULT '0' COMMENT 'Alexa 排名',
  `country` char(10) NOT NULL DEFAULT '' COMMENT '国家',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
-- 添加数据
INSERT INTO `websites` VALUES 
 ('1', 'Google', 'https://www.google.cm/', '1', 'USA'),
 ('2', '淘宝', 'https://www.taobao.com/', '13', 'CN'), 
 ('3', '京东', 'http://www.jd.com', '12', 'CN'),
 ('4', '微博', 'http://weibo.com/', '20', 'CN'), 
 ('5', 'Facebook', 'https://www.facebook.com/', '3', 'USA');
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

2、java交互mysql

import java.sql.*;

public class JavaConnMysql {
    private Connection conn = null;
    private Statement stmt = null;
    private ResultSet rs = null;

    private final String URL = "jdbc:mysql://localhost:3306/test?userSSL=false&characterEncoding=utf8&allowPublicKeyRetrieval=true&serverTimezone=UTC";
    private final String USER = "root";
    private final String PASSWORD = "123456";


    //加载驱动
    public void sqlconn() {
        try {
            //驱动加载:8.0以上:"com.mysql.cj.jdbc.Driver"
            Class.forName("com.mysql.cj.jdbc.Driver");
            //"jdbc:mysql://localhost:3306/test?userSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";

            //加载驱动:8.0 以下:"com.mysql.jdbc.Driver"
            // 链接地址"jdbc:mysql://localhost:3306/test		
            
       		//声明连接
            conn = DriverManager.getConnection(URL, USER, PASSWORD);

            stmt = conn.createStatement();//创建声明
			
			//添加  //删除和修改类似
            int a = stmt.executeUpdate("INSERT INTO websites VALUES (NULL ,'京东','http://www.jd.com','5623','CN')");
            if (a!=0){
				System.out.println("添加成功");
			}
            //查询
            rs = stmt.executeQuery("SELECT * FROM websites");
            while (rs.next()) {//获取查询的值
                int id = rs.getInt("id");
                String name = rs.getString("name");
                String url = rs.getString("url");
                String alexa = rs.getString("alexa");
                String country = rs.getString("country");

                System.out.println("ID:"+id+"  "+"Name:"+name
                        +"  "+"Url:"+url+"  "+"Alexa:"+alexa+"  "+"Country:"+country
                );//打印输出
            }

            //关闭
            conn.close();
            stmt.close();
            rs.close();

        } catch (SQLException e2) {
            e2.printStackTrace();

        } catch (Exception e) {//解决加载驱动报错
            e.getMessage();
        } finally {
            //执行关闭
            try {
                if (conn != null) conn.close();//关闭连接声明
            } catch (SQLException e) {
            }

            try {
                if (stmt != null) stmt.close();//关闭创建的声明
            } catch (SQLException e) {
                e.getMessage();
            }
            
            try {
                if (rs != null) rs.close();//关闭结果集
            } catch (SQLException e) {
                e.getMessage();
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/442779
推荐阅读
相关标签
  

闽ICP备14008679号