2022年3月30日

JDBC中事务相关方法

摘要: public void transactionMethod() throws Exception { Connection connection = JDBCUtils.getConnection(); connection.setAutoCommit(false); connection.getT 阅读全文

posted @ 2022-03-30 08:13 金满仓 阅读(15) 评论(0) 推荐(0) 编辑

JDBC批量插入

摘要: public void batchInsert() { String sql = "insert into goods(name) values(?)"; Connection conn = null; PreparedStatement ps = null; try { conn = JDBCUt 阅读全文

posted @ 2022-03-30 08:08 金满仓 阅读(312) 评论(0) 推荐(0) 编辑

JDBC操作Blob

摘要: public void updateBlob() throws Exception { String sql = "insert into customers(name,email,birth,photo)values(?,?,?,?)"; Connection connection = JDBCU 阅读全文

posted @ 2022-03-30 08:06 金满仓 阅读(52) 评论(0) 推荐(0) 编辑

BaseDAO.java

摘要: package com.atguigu3.dao; import java.lang.reflect.Field; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.sql.C 阅读全文

posted @ 2022-03-30 07:28 金满仓 阅读(34) 评论(0) 推荐(0) 编辑

JDBCUtils.java

摘要: package com.life.util; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.DriverManager; import java. 阅读全文

posted @ 2022-03-30 06:46 金满仓 阅读(22) 评论(0) 推荐(0) 编辑

导航