第五知识单元

高级编程

Java程序设计 第12讲,主讲人:李欣

Created: 2022-11-14 Mon 02:40

0.1. 互动课堂

Click to host the seminar.

0.2. 签到

https://xin.blue/tool/attendance/

0.3. 本次课的目标

  • 了解 数据库、SQL语言和MySQL系统的基础知识;
  • 理解 JDBC数据库访问的运行机制;
  • 理解 Java数据库编程的应用实例。

1. MySQL

1.1. 简介

MySQL, the most popular Open Source SQL database management system, is developed, distributed, and supported by Oracle Corporation.

The MySQL website provides the latest information about MySQL software.

The official way to pronounce MySQL is My Ess Que Ell (not my sequel), but we do not mind if you pronounce it as my sequel or in some other localized way.

https://dev.mysql.com/doc/refman/8.0/en/what-is-mysql.html

1.2. 下载与安装

MySQL
Connector/J
# sudo apt update
sudo apt install mysql-server
systemctl status mysql.service
# sudo systemctl start mysql.service

1.3. 配置 root 用户密码

sudo mysql
# Welcome to the MySQL monitor.  Commands end with ; or \g.
# Your MySQL connection id is 10
# Server version: 8.0.31-0ubuntu0.22.04.1 (Ubuntu)
# 
# Copyright (c) 2000, 2022, Oracle and/or its affiliates.
# 
# Oracle is a registered trademark of Oracle Corporation and/or its
# affiliates. Other names may be trademarks of their respective
# owners.
# 
# Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
# 
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
# Query OK, 0 rows affected (0.01 sec)
# 
mysql> exit
# Bye

1.4. 以设置的密码登录MySQL终端

mysql -u root -p
# Enter password:
# Welcome to the MySQL monitor.  Commands end with ; or \g.
# Your MySQL connection id is 18
# Server version: 8.0.31-0ubuntu0.22.04.1 (Ubuntu)
# 
# Copyright (c) 2000, 2022, Oracle and/or its affiliates.
# 
# Oracle is a registered trademark of Oracle Corporation and/or its
# affiliates. Other names may be trademarks of their respective
# owners.
# 
# Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
# 
mysql>

1.5. 显示数据库

mysql> show databases;
# +--------------------+
# | Database           |
# +--------------------+
# | information_schema |
# | mysql              |
# | performance_schema |
# | sys                |
# +--------------------+
# 4 rows in set (0.00 sec)

1.6. 创建数据库

mysql> CREATE DATABASE test DEFAULT CHARSET UTF8;
# Query OK, 1 row affected, 1 warning (0.01 sec)
mysql> show databases;
# +--------------------+
# | Database           |
# +--------------------+
# | information_schema |
# | mysql              |
# | performance_schema |
# | sys                |
# | test               |
# +--------------------+
# 5 rows in set (0.00 sec)

1.7. 创建表

use test;
-- Database changed

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;
-- Query OK, 0 rows affected, 3 warnings (0.02 sec)

1.8. 向表内插入数据

select * from websites;
-- Empty set (0.00 sec)

INSERT INTO `websites` VALUES
('1', 'Google', 'https://www.google.com/', '1', 'USA'),
('2', '淘宝', 'https://www.taobao.com/', '13', 'CN'),
('3', '微博', 'http://weibo.com/', '20', 'CN'),
('4', 'Facebook', 'https://www.facebook.com/', '3', 'USA');
-- Query OK, 4 rows affected (0.01 sec)
-- Records: 4  Duplicates: 0  Warnings: 0

select * from websites;
-- +----+----------+---------------------------+-------+---------+
-- | id | name     | url                       | alexa | country |
-- +----+----------+---------------------------+-------+---------+
-- |  1 | Google   | https://www.google.com/   |     1 | USA     |
-- |  2 | 淘宝     | https://www.taobao.com/   |    13 | CN      |
-- |  3 | 微博     | http://weibo.com/         |    20 | CN      |
-- |  4 | Facebook | https://www.facebook.com/ |     3 | USA     |
-- +----+----------+---------------------------+-------+---------+
-- 4 rows in set (0.00 sec)

2. 使用JDBC的数据库编程实例

import java.sql.*;
public class MySQLDemo {
    // MySQL 8.0 以下版本 - JDBC 驱动名及数据库 URL
    // static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
    // static final String DB_URL = "jdbc:mysql://localhost:3306/test";
    // MySQL 8.0 以上版本 - JDBC 驱动名及数据库 URL
    static final String JDBC_DRIVER = "com.mysql.cj.jdbc.Driver";
    static final String DB_URL =
        "jdbc:mysql://localhost:3306/test?useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC";
    static final String USER = "root"; // MySQL用户名
    static final String PASS = "password"; // MySQL密码
    public static void main(String[] args) {
        Connection conn = null;
        Statement stmt = null;
        try {
            Class.forName(JDBC_DRIVER); // 注册JDBC驱动
            conn = DriverManager.getConnection(DB_URL, USER, PASS); // 连接数据库
            stmt = conn.createStatement(); // 实例化Statement对象
            String sql = "SELECT id, name, url FROM websites"; // 定义将要执行的SQL语句
            ResultSet rs = stmt.executeQuery(sql); // 执行SQL语句
            while(rs.next()){ // 展开结果集
                System.out.print("ID: " + rs.getInt("id"));
                System.out.print(", Website Name: " + rs.getString("name"));
                System.out.print(", Website URL: " + rs.getString("url"));
                System.out.print("\n");
            }
            rs.close(); // 关闭结果集
        } catch(SQLException e) { // 处理 JDBC 错误
            e.printStackTrace();
        } catch(Exception e) { // 处理 Class.forName 错误
            e.printStackTrace();
        } finally { // 关闭资源
            try {
                if(stmt != null) stmt.close(); // 关闭Statement对象
            } catch(SQLException e) {
            }
            try {
                if(conn != null) conn.close(); // 关闭连接
            } catch(SQLException e) {
                e.printStackTrace();
            }
        }
        System.out.println("Bye!");
    }
}
java -cp .:mysql-connector-j-8.0.31.jar MySQLDemo
# ID: 1, Website Name: Google, Website URL: https://www.google.com/
# ID: 2, Website Name: 淘宝, Website URL: https://www.taobao.com/
# ID: 3, Website Name: 微博, Website URL: http://weibo.com/
# ID: 4, Website Name: Facebook, Website URL: https://www.facebook.com/
# Bye!