【前言】
该博客采用了idea+maven+mysql,实现了连接数据库,对新手的java学习有一定的帮助。
IDEA安装:
下载的是2020版的,足够用了。一般可以免费使用1个月,如果希望使用永久且希望比较实惠的话,可以去某宝搜索。
传送门CSDN
Maven的下载和安装:
如果觉得文章看起来不舒服,可以去哔哩哔哩搜索maven相应的视频,我当初看的是尚硅谷和狂神的。
传送门
建一个maven项目:一定要确保使用的是自己的Jdk
用这种方式写起来规范一些,看着更像大佬
配置Pom:(相当于导入jdbc的包,注意写的位置)
maven依赖可以去相应的仓库搜索,一般选择使用人数最多的依赖。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.feng</groupId>
<artifactId>mysql-connect-03</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.26</version>
</dependency>
</dependencies>
(蓝色位置出有个圈圈记得刷新一下,确保mysql-connector进来)
mysql
mysql-connector-java
8.0.26
写一个测试类:
mysqlConnect.java
driver和url是固定的。user是数据库用户名,password是数据库的密码。
import java.sql.*;
public class mysqlConnect {
public static void main(String[] args) throws Exception {
String driver = "com.mysql.cj.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/test?useSSL=true&useUnicode=true&characterEncoding=utf8";
String user = "root";
String password = 字符串;
Connection connection = null;
Statement statement = null;
ResultSet resultSet = null;
String sql = "select * from people";
String sql2 = "insert into people values('10','李四',1)";
String sql3 = "update people set name ='还是个宝宝' where id = '1'";
String sql4 = "delete from test.people where id = '5'";
Class.forName(driver);
try {
connection = DriverManager.getConnection(url, user, password);
statement = connection.createStatement();
statement.execute(sql2);//插入
statement.execute(sql3);//更新
statement.execute(sql4);//删除
resultSet = statement.executeQuery(sql);
while(resultSet.next())
{
int anInt = resultSet.getInt(0);
System.out.print("id:"+resultSet.getInt("id"));
System.out.print(",姓名:"+resultSet.getString("name"));
System.out.println(",年龄:"+resultSet.getInt("age"));
}
} catch (SQLException throwables) {
throwables.printStackTrace();
}finally {
resultSet.close();
statement.close();
connection.close();
}
}
}
我导的这个jar包是com.mysql.cj.jdbc.Driver(有的是com.mysql.jdbc.Driver)
Mysql url的固定格式,test换为自己数据库的名字,user为用户名,password为密码
String driver = "com.mysql.cj.jdbc.Driver";
String url = "jdbc:mysql://localhost:3306/test?useSSL=true&useUnicode=true&characterEncoding=utf8";
执行结果:
原表:这些创建数据库所创建的表,有三个字段,其中id是主键,name是varchar类型,age是int类型
【后记】
去年上JAVA课,老师要求整理的。前几天mysql全忘记了,所以放在CSDN上,方便以后查阅。当初mysql语句写的特别溜,所以整理的时候都没有放上sql语句,反观现在因为没有留下一个复习的系统的文章,所以导致自己sql语句又得重新学。不要怕慢,慢慢来,会很快。加油!!!奋进