手写JDBC:简单的连接MySQL数据库进行“增删改查”(CURD)

本文主要是介绍手写JDBC:简单的连接MySQL数据库进行“增删改查”(CURD),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

大家都会用框架MyBtis,现在来回到我们最原始学习连接MySQL数据库的时候,对数据库里的表数据进行最简单的“增删改查”。

总体分为几个步骤:

1.加载驱动

2.拿到连接

3.编写SQL语句

4.预编译SQL

5.执行SQL

6.拿到结果集

7.处理结果集

8.资源释放

首先,去到Maven仓库找到MySQL的包:快捷链接https://mvnrepository.com/artifact/mysql/mysql-connector-java/8.0.28

复制里面的坐标:

   <dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.28</version></dependency>

再来一个测试的包,方便我们后续进行测试:

坐标在这里

<dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.11</version><scope>test</scope></dependency>

把这两个坐标导入Pom文件,这样,环境就算搭建完了。

其次是打开MySQL数据库。。。我的是8.0版本,各位看版本选择合适的坐标进行导包!!!

创建实体InfoStudent:

package Entity;
public class InfoStudent {private String idCode;private String name;private String gender;public InfoStudent(String idCode, String name, String gender) {this.idCode = idCode;this.name = name;this.gender = gender;}public InfoStudent() {}public String getIdCode() {return idCode;}public void setIdCode(String idCode) {this.idCode = idCode;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getGender() {return gender;}public void setGender(String gender) {this.gender = gender;}@Overridepublic String toString() {return "InfoStudent{" +"身份证号:='" + idCode + '\'' +", 姓名:='" + name + '\'' +", 性别:='" + gender + '\'' +'}';}
}

创建DAO(data access object)接口:写上”增删改查“的四个方法

public interface InfoGetDao {//加载驱动时:抛出“类不存在”的异常和连接数据库时:的“SQL”的异常//selectInfoStudent query(String  name) throws ClassNotFoundException,SQLException;//insertint insert(InfoStudent info) throws ClassNotFoundException,SQLException;//deleteint delete(String id_code)throws ClassNotFoundException,SQLException;//updateint update(InfoStudent info)throws ClassNotFoundException,SQLException;
}

创建DAO的实现类:继承方法,写上调用Dao功能后返回

package Dao.Impl;import Dao.InfoGetDao;
import Entity.InfoStudent;
import java.sql.*;
public class InfoGetDaoImpl implements InfoGetDao {@Overridepublic InfoStudent query(String name) throws ClassNotFoundException, SQLException {String url = "jdbc:mysql://localhost:3306/info";String uName = "root";String pwd = "123456";//1.加载驱动Class.forName("com.mysql.cj.jdbc.Driver");//2.拿链接Connection conn = DriverManager.getConnection(url, uName, pwd);//3.sqlString sql = "select * from infoelec where name ='" + name + "'";//4.预编译PreparedStatement pr = conn.prepareStatement(sql);//5.拿到结果集ResultSet set = pr.executeQuery();boolean next = set.next();//6.处理结果集if (next) {String id_code = set.getString("id_code");String gender = set.getString("gender");InfoStudent info = new InfoStudent();info.setName(name);info.setIdCode(id_code);info.setGender(gender);return info;}pr.close();conn.close();return null;}@Overridepublic int insert(InfoStudent info) throws ClassNotFoundException, SQLException {String url = "jdbc:mysql://localhost:3306/info";String uName = "root";String pwd = "123456";//1.加载驱动Class.forName("com.mysql.cj.jdbc.Driver");//2.拿到链接Connection conn = DriverManager.getConnection(url, uName, pwd);//3.sql//String sql = "insert into infoelec(id_code,name,gender) values" + " ('" + info.getIdCode() + "'," + "'" + info.getName() + "'," + "'" + info.getGender() + "')";String sql="insert into infoelec(id_code,name,gender) values (?,?,?)";//4.预编译sqlPreparedStatement pr = conn.prepareStatement(sql);//5.填充占位符pr.setString(1,info.getIdCode());pr.setString(2,info.getName());pr.setString(3,info.getGender());//6.执行SQLint i = pr.executeUpdate();//7.拿到结果集//8.处理结果集//9.关闭资源pr.close();conn.close();if (i>0){return i;}else {return 0;}}@Overridepublic int delete(String id_code) throws ClassNotFoundException, SQLException {String url="jdbc:mysql://localhost:3306/info";String uName="root";String pwd="123456";//1.加载驱动类Class.forName("com.mysql.cj.jdbc.Driver");//2.拿到链接Connection conn = DriverManager.getConnection(url, uName, pwd);//3.SQLString sql="delete from infoelec where id_code=(?)";//4.预编译SQLPreparedStatement pr = conn.prepareStatement(sql);//5.填充占位符pr.setString(1,id_code);//6.执行SQLint i = pr.executeUpdate();//7.拿到结果集//8.处理结果集//9.关闭资源pr.close();conn.close();if (i>0){return i;}else {return 0;}}@Overridepublic int update(InfoStudent info) throws ClassNotFoundException, SQLException {String url="jdbc:mysql://localhost:3306/info";String uName="root";String pwd="123456";Class.forName("com.mysql.cj.jdbc.Driver");Connection conn = DriverManager.getConnection(url, uName, pwd);String sql="update infoelec set name=(?),gender=(?) where id_code=(?)";PreparedStatement pr = conn.prepareStatement(sql);pr.setString(1,info.getName());pr.setString(2,info.getGender());pr.setString(3,info.getIdCode());int i = pr.executeUpdate();pr.close();conn.close();if (i>0){return i;}else {return 0;}}
}

MySQL数据库连接的链接讲解:

String url="jdbc:mysql://localhost:3306/info";

jdbc:mysql:// :协议标识 其钟mysql是MySQL服务器,如果是Oracle的数据库服务器,可改成Oracle;

localhost :本机IP地址的俗称,专业名称是127.0.0.1;

:3306 :数据库的端口号,MySQL服务器默认是3306的映射端口;

/info :/数据库名称;固定的格式:“/”+“数据库名称”;

接下来是服务(Service)层的接口:对应“增删改查”的方法名称:

接口

package Service;import Entity.InfoStudent;
import java.sql.SQLException;
public interface InfoGetService {InfoStudent getInfo(String name) throws SQLException, ClassNotFoundException;int add(InfoStudent info)throws SQLException,ClassNotFoundException;int remove(String id_code)throws ClassNotFoundException,SQLException;int getUpdate(InfoStudent info)throws ClassNotFoundException,SQLException;
}

 实现

package Service.Impl;import Dao.Impl.InfoGetDaoImpl;
import Dao.InfoGetDao;
import Entity.InfoStudent;import java.sql.SQLException;
public class InfoGetServiceImpl implements Service.InfoGetService {@Overridepublic InfoStudent getInfo(String name) throws SQLException, ClassNotFoundException {InfoGetDao dao = new InfoGetDaoImpl();return dao.query(name);}@Overridepublic int add(InfoStudent info) throws SQLException, ClassNotFoundException {InfoGetDao dao =new InfoGetDaoImpl();return dao.insert(info);}@Overridepublic int remove(String id_code) throws ClassNotFoundException, SQLException {InfoGetDao dao = new InfoGetDaoImpl();return dao.delete(id_code);}@Overridepublic int getUpdate(InfoStudent info) throws ClassNotFoundException, SQLException {InfoGetDao dao = new InfoGetDaoImpl();return dao.update(info);}
}

开始测试:

前置条件:你数据库里有对应的数据库和与实体类对应的表乃至数据库表的字段类型要与你在Java中“增删改”传入的类型一直,及String对varchar/char或Integer对应int/Integer等等。如果类型不一致;MySQL会抛出Doule的异常错误提示:即“Data truncation: Truncated incorrect DOUBLE value”;

import Entity.InfoStudent;
import Service.Impl.InfoGetServiceImpl;
import Service.InfoGetService;
import java.sql.SQLException;/*** @version 1.0.0* @Author Jam·Li* @ Date 2024/8/24 16:57* @ Annotation:*/
public class Test {@org.junit.Testpublic void test() throws SQLException, ClassNotFoundException {//创建实体对象,承载数据InfoStudent info = new InfoStudent("520", "小美", "女");InfoStudent info2 = new InfoStudent("521", "小明", "男");//创建Service层对象InfoGetService service =new InfoGetServiceImpl();//调用service接口的增删改查;//增加int add = service.add(info);int add2 = service.add(info2);System.out.println(add);System.out.println(add2);//删除int remove = service.remove("521");System.out.println(remove);//修改InfoStudent infoChange = new InfoStudent("520", "小莉", "女");int change = service.getUpdate(infoChange);System.out.println(change);//查询InfoStudent selectInfo = service.getInfo("小莉");System.out.println(selectInfo);}}

测试结果:

1
1
1
1
InfoStudent{身份证号:='520', 姓名:='小莉', 性别:='女'}

数据库里的最终数据:

优化与改进 :

潜在问题:

性能瓶颈:频繁的数据库连接创建与销毁开销大。

安全性风险:明文密码在URL中传递。

优化建议:

使用连接池:如HikariCP、c3p0,减少连接创建成本。

环境变量或配置文件:敏感信息不在代码中硬编码。

拓展知识:

如果本文对你有帮助,请帮忙点赞收藏加作者关注一波;后续的作者会不断推出更精彩质量更高的文章哟!谢谢啦! 

这篇关于手写JDBC:简单的连接MySQL数据库进行“增删改查”(CURD)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1107774

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

详谈redis跟数据库的数据同步问题

《详谈redis跟数据库的数据同步问题》文章讨论了在Redis和数据库数据一致性问题上的解决方案,主要比较了先更新Redis缓存再更新数据库和先更新数据库再更新Redis缓存两种方案,文章指出,删除R... 目录一、Redis 数据库数据一致性的解决方案1.1、更新Redis缓存、删除Redis缓存的区别二

oracle数据库索引失效的问题及解决

《oracle数据库索引失效的问题及解决》本文总结了在Oracle数据库中索引失效的一些常见场景,包括使用isnull、isnotnull、!=、、、函数处理、like前置%查询以及范围索引和等值索引... 目录oracle数据库索引失效问题场景环境索引失效情况及验证结论一结论二结论三结论四结论五总结ora

基于Qt开发一个简单的OFD阅读器

《基于Qt开发一个简单的OFD阅读器》这篇文章主要为大家详细介绍了如何使用Qt框架开发一个功能强大且性能优异的OFD阅读器,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 目录摘要引言一、OFD文件格式解析二、文档结构解析三、页面渲染四、用户交互五、性能优化六、示例代码七、未来发展方向八、结论摘要

Mysql 中的多表连接和连接类型详解

《Mysql中的多表连接和连接类型详解》这篇文章详细介绍了MySQL中的多表连接及其各种类型,包括内连接、左连接、右连接、全外连接、自连接和交叉连接,通过这些连接方式,可以将分散在不同表中的相关数据... 目录什么是多表连接?1. 内连接(INNER JOIN)2. 左连接(LEFT JOIN 或 LEFT

C#实现文件读写到SQLite数据库

《C#实现文件读写到SQLite数据库》这篇文章主要为大家详细介绍了使用C#将文件读写到SQLite数据库的几种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以参考一下... 目录1. 使用 BLOB 存储文件2. 存储文件路径3. 分块存储文件《文件读写到SQLite数据库China编程的方法》博客中,介绍了文

Android数据库Room的实际使用过程总结

《Android数据库Room的实际使用过程总结》这篇文章主要给大家介绍了关于Android数据库Room的实际使用过程,详细介绍了如何创建实体类、数据访问对象(DAO)和数据库抽象类,需要的朋友可以... 目录前言一、Room的基本使用1.项目配置2.创建实体类(Entity)3.创建数据访问对象(DAO

SpringBoot使用minio进行文件管理的流程步骤

《SpringBoot使用minio进行文件管理的流程步骤》MinIO是一个高性能的对象存储系统,兼容AmazonS3API,该软件设计用于处理非结构化数据,如图片、视频、日志文件以及备份数据等,本文... 目录一、拉取minio镜像二、创建配置文件和上传文件的目录三、启动容器四、浏览器登录 minio五、

mysql重置root密码的完整步骤(适用于5.7和8.0)

《mysql重置root密码的完整步骤(适用于5.7和8.0)》:本文主要介绍mysql重置root密码的完整步骤,文中描述了如何停止MySQL服务、以管理员身份打开命令行、替换配置文件路径、修改... 目录第一步:先停止mysql服务,一定要停止!方式一:通过命令行关闭mysql服务方式二:通过服务项关闭

SQL Server数据库磁盘满了的解决办法

《SQLServer数据库磁盘满了的解决办法》系统再正常运行,我还在操作中,突然发现接口报错,后续所有接口都报错了,一查日志发现说是数据库磁盘满了,所以本文记录了SQLServer数据库磁盘满了的解... 目录问题解决方法删除数据库日志设置数据库日志大小问题今http://www.chinasem.cn天发