1 Star 0 Fork 4

eaglesinchina/shopping

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
DataBaseDao.java 1022 Bytes
一键复制 编辑 原始数据 按行查看 历史
package com.dhxy.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
public class DataBaseDao {
protected Connection conn = null;
protected Statement stmt = null;
protected PreparedStatement pstm;
protected void load() throws ClassNotFoundException, SQLException {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/questions\\\",\\\"root\\\",\\\"mysql");
stmt = conn.createStatement();
}
protected void closeAll() throws SQLException {
if (stmt != null) {
stmt.close();
}
if (conn != null) {
conn.close();
}
}
protected int addAll(String str,Object... obj) throws SQLException, ClassNotFoundException{
load();
pstm=conn.prepareStatement(str);
for(int i=0;i<obj.length;i++){
pstm.setObject(i+1, obj[i]);
}
int count = pstm.executeUpdate();
closeAll();
return count;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/github-32092740/shopping.git
git@gitee.com:github-32092740/shopping.git
github-32092740
shopping
shopping
master

搜索帮助