package student;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class DBConnect {
public Statement stmt = null;
public static Connection getConnection(){
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost:3306/sushe?useUnicode=true&characterEncoding=UTF-8";
String user="root";
String password="111";
con=DriverManager.getConnection(url, user, password);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return con;
}
public ResultSet DBQuery(String sqlText) {
Connection conn1=null;
ResultSet rs=null;
java.sql.Statement stmt=null;
try{
conn1=getConnection();
stmt=conn1.createStatement();
rs=stmt.executeQuery(sqlText);
}
catch(Exception x){
x.printStackTrace();
}
return rs;
}
public int DBUpdate(String sqlText){
Connection conn=null;
int rowcount=0;
try{
conn=getConnection();
stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
ResultSet.CONCUR_READ_ONLY);
rowcount=stmt.executeUpdate(sqlText);
}catch(Exception x){
x.printStackTrace();
}
return rowcount;
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
SusheManage.zip (23个子文件)
SusheManage
WebContent
addstudent.jsp 5KB
META-INF
MANIFEST.MF 39B
WEB-INF
web.xml 1KB
lib
mysql-connector-java-5.0.5-bin.jar 501KB
checklogin.jsp 2KB
main.jsp 920B
database
SusheManage.sql 1KB
query_student.jsp 6KB
addroom.jsp 4KB
login.jsp 2KB
query_house.jsp 4KB
.settings
org.eclipse.wst.jsdt.ui.superType.name 6B
org.eclipse.wst.common.project.facet.core.xml 305B
org.eclipse.wst.common.component 485B
org.eclipse.wst.jsdt.ui.superType.container 49B
.jsdtscope 567B
org.eclipse.jdt.core.prefs 303B
src
com
wgh
filter
CharacterEncodingFilter.java 1KB
student
DBConnect.java 1KB
.project 1KB
.classpath 741B
build
classes
com
wgh
filter
CharacterEncodingFilter.class 2KB
student
DBConnect.class 2KB
共 23 条
- 1
hoho_12
- 粉丝: 3090
- 资源: 65
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功
- 1
- 2
前往页