首页>代码>java开发网上书店项目>/ShoppingBooks20090731/ShoppingBook10_1/src/com/lovo/cq/shopping10_1/common/DbUtil.java
package com.lovo.cq.shopping10_1.common;
import java.sql.*;
public class DbUtil {
private PreparedStatement pstmt = null;
private Connection con = null;
public DbUtil() {
try {
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost/ShoppingBook10_1",
"root", "root");;
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
public Connection getCon() {
return con;
}
public void close() {
if (pstmt != null) {
try {
pstmt.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
if (con != null) {
try {
con.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}
}
最近下载更多
123wwwghh LV2
2024年9月18日
gm629344 LV1
2024年6月19日
微信网友_7020152908451840 LV1
2024年6月2日
linmooo LV3
2024年5月25日
xinru yan LV1
2024年5月19日
微信网友_6943357946957824 LV1
2024年5月12日
why135138 LV1
2024年4月29日
768881787 LV7
2023年12月4日
llll66 LV1
2023年10月18日
hooligans123 LV1
2023年9月21日
最近浏览更多
徐长风 LV2
4月27日
微信网友_7461641148715008
4月10日
暂无贡献等级
wwwrsac
2024年12月21日
暂无贡献等级
mm1242 LV1
2024年12月19日
蛋煎蟹
2024年12月17日
暂无贡献等级
19880416
2024年12月16日
暂无贡献等级
klllllllllllllllllll
2024年12月10日
暂无贡献等级
韩同学
2024年11月23日
暂无贡献等级
微信网友_6786215447367680 LV5
2024年10月11日
123wwwghh LV2
2024年9月18日

