package test;
import java.sql.DriverManager;
import java.sql.SQLException;
import com.mysql.jdbc.Connection;
import com.mysql.jdbc.PreparedStatement;
public class DB { //创建数据库连接类。
private String dbUrl="jdbc:mysql://localhost:3306/student?useUnicode=true&characterEncoding=utf-8";
private String dbUser="root";
private String dbPwd="123";
private Connection conn=null;
private PreparedStatement stmt=null;
public DB()
{
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
public Connection getConn() //获取数据库的连接对象。
{
try {
conn=(Connection) DriverManager.getConnection(dbUrl, dbUser, dbPwd);
} catch (SQLException e) {
e.printStackTrace();
}
return conn;
}
public boolean addStudent(studentBean sb){ //添加学生信息的方法。
String sno=sb.getSno();
String sname=sb.getSname();
try {
conn=this.getConn();
conn.setAutoCommit(false);
stmt=(PreparedStatement) conn.prepareStatement("INSERT INTO studentinfor(sno,sname) VALUES (?,?)");
stmt.setString(1,sno);
stmt.setString(2,sname);
stmt.execute();
conn.commit();
return true;
} catch (SQLException e) {
e.printStackTrace();
try {
conn.rollback();
} catch (SQLException e1) {
e1.printStackTrace();
}
}finally{
try {
conn.close();
stmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
return false;
}
}
loci1327960509
- 粉丝: 0
- 资源: 2
最新资源
- 毕设和企业适用springboot智能云服务平台类及物流信息平台源码+论文+视频.zip
- 毕设和企业适用springboot智能云服务平台类及用户体验优化平台源码+论文+视频.zip
- 毕设和企业适用springboot智能云服务平台类及员工管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能云服务平台类及智能农业解决方案源码+论文+视频.zip
- 毕设和企业适用springboot智能云服务平台类及智能语音助手平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及车联网管理平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及互联网金融平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及个性化推荐平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及机器学习平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及交通信息平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及健康风险评估平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及企业管理智能化平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及旅游数据平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及企业培训平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及视觉识别平台源码+论文+视频.zip
- 毕设和企业适用springboot智能制造类及数字营销平台源码+论文+视频.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈