import java.sql.*; public class DataBaseConnection { static{ //2005 //String DBDRIVER="com.microsoft.jdbc.sqlserver.SQLServerDriver";//2000 } public static Connection getConn(){ String DBDRIVER="com.microsoft.sqlserver.jdbc.SQLServerDriver"; String DBURL="jdbc:sqlserver://localhost:1433;DatabaseName=cwgl"; Connection conn=null; try { Class.forName(DBDRIVER); conn=DriverManager.getConnection(DBURL,"sa","1"); } catch (Exception e) { e.printStackTrace(); } return conn; } public static void closeConn(Connection conn){ try { conn.close(); conn=null; } catch (SQLException e) { e.printStackTrace(); } } public static Statement getStmt(Connection conn){ Statement stmt=null; try { stmt=conn.createStatement(); } catch (SQLException e) { e.printStackTrace(); } return stmt; } public static void closeStmt(Statement stmt){ try { stmt.close(); stmt=null; } catch (SQLException e) { e.printStackTrace(); } } public static PreparedStatement getpStmt(Connection conn,String sql){ PreparedStatement pStmt=null; try { pStmt=conn.prepareStatement(sql); } catch (SQLException e) { e.printStackTrace(); } return pStmt; } public static void closePstmt(Statement pstmt){ try { pstmt.close(); pstmt=null; } catch (SQLException e) { e.printStackTrace(); } } public static ResultSet getRs(Statement stmt,String sql){ ResultSet rs=null; try { rs=stmt.executeQuery(sql); } catch (SQLException e) { e.printStackTrace(); } return rs; } public static void closeRs(ResultSet rs){ try { rs.close(); rs=null; } catch (SQLException e) { e.printStackTrace(); } } }
2021-06-04 21:00:41 122KB 财务管理系统
1
附带源码,ppt,设计报告
2021-06-04 16:53:49 6.19MB sql 数据库 图书馆 系统
1
一、数据库设计过程数据库技术是信息资源管理最有效的手段。数据库设计是指对于一个给定的应用环境,构造最优的数据库模式,建立数据库及其应用系统,有效存储数据,满足用户信息要求和处理要求。
2021-06-04 11:36:52 43KB SQL
1
用于各类数据库管理
2021-06-03 14:01:28 113.63MB sql 数据库
1
SQL数据库实验四_复杂查询(1)解答.doc
2021-06-03 08:25:37 1.54MB SQL 数据库 复杂查询
1
scotte.sql数据库练习表
2021-05-31 13:01:45 4KB sql
1
数据库系统设计 minisql 有图形界面
2021-05-31 10:50:36 20.91MB sql 数据库
1
CATIA CAA二次开发 连接数据库。内含所有源代码
2021-05-31 09:47:42 3.25MB CAA SQL VC++ CNEXT
1
利用sql2000做的银行ATM机的系统
2021-05-31 04:44:56 101KB sql语言设计的ATMqu取款机系统
1
VS+SQL数据库连接.这个连接是最简单的了!
2021-05-30 12:02:56 940B VS SQL 数据库连接
1