首页>代码>JSP+mysql网上书店系统源代码分享学习>/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();
			}
		}
	}
}
最近下载更多
biakuya  LV2 1月4日
SSSanc  LV1 2024年6月6日
yrisok  LV3 2024年4月22日
17693282606  LV12 2023年12月27日
王皓辰  LV1 2023年12月18日
afxlll  LV2 2023年12月11日
xiquyiyuan  LV10 2023年8月7日
xyzzuidaima  LV3 2023年6月14日
zhangyi789  LV8 2023年5月11日
微信网友_6442962125967360  LV2 2023年5月8日
最近浏览更多
biakuya  LV2 1月4日
lysnb3  LV1 2024年12月23日
wwwrsac 2024年12月21日
暂无贡献等级
mm1242  LV1 2024年12月19日
19880416 2024年12月16日
暂无贡献等级
韩同学 2024年11月23日
暂无贡献等级
微信网友_7172745073758208  LV1 2024年9月18日
liyan54188  LV2 2024年6月25日
微信网友_5986558820093952  LV4 2024年6月20日
gm629344  LV1 2024年6月19日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友