资源简介
适用于本科计算机专业毕业设计项目,保证功能齐全,没有任何bug,也是俺花钱专门找人定做的,然后毕业论文(设计)评分为优秀,现在共享给大家,不喜勿喷,谢谢!

代码片段和文件信息
package db;
import java.sql.*;
public class db {
private String dbDriver=“com.mysql.jdbc.Driver“;
private String sConnStr = “jdbc:mysql://localhost:3306/jspyydzbadzkf64mysql?useUnicode=true&characterEncoding=gbk“;
public Connection connect = null;
public ResultSet rs=null;
public db() {
try {
Class.forName(dbDriver).newInstance();
connect = DriverManager.getConnection(sConnStr“root““8888“);
}
catch (Exception ex) {
System.out.println(“12121“);
}
}
public ResultSet executeQuery(String sql) {
try{
connect=DriverManager.getConnection(sConnStr“root““8888“);
Statement stmt=connect.createStatement();
rs=stmt.executeQuery(sql);
}catch(SQLException ex){
System.err.println(ex.getMessage());
}
return rs;
}
public void executeUpdate(String sql)
{
Statement stmt=null;
rs=null;
try
{ connect=DriverManager.getConnection(sConnStr“root““8888“);
stmt=connect.createStatement();
stmt.executeUpdate(sql);
stmt.close();
connect.close();
}
catch(SQLException ex)
{
System.err.println(ex.getMessage());
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5887 2013-05-22 23:10 databa
目录 0 2013-05-22 17:22 databa
----------- --------- ---------- ----- ----
5887 2
- 上一篇:FEMM 4.2 64位
- 下一篇:2016美国大学生数学建模竞赛O奖论文全部
相关资源
- The direction of synaptic plasticity mediated
- Reparatory Effects of Nicotine on NMDA Recepto
- Apolipoprotein E4 Impairs in vivo Hippocampal
- Histamine excites rat lateral vestibular nucle
- Diltiazem augmented pentobarbital-induced LORR
- Fabrication and all-optical poling characteris
- 基于PCIe的FPGA动态配置设计与实现
- 修正Sway-Rocking土-结构相互作用模型的
- 毕业论文之温度传感器DS18B20(源码
- 美赛论文MCM两个word模板 论文格式 w
- 电子商务毕业设计论文
- 武汉大学本科生论文格式自动排版工
- 题库管理系统(包括11页的论文,PP
- 学籍管理信息系统系统需求分析报告
- 企业局域网毕业论文 经典
- 16x16点阵(滚动显示)论文 程序
- 网络信息安全技术 论文
- 不错的电子商务毕业论文
- 网上在线鲜花销售系统论文
- 全国电子设计大赛自动寻迹小车论文
- 计算机专业毕业论文--饲料销售管理系
- Cellular automata Model: an Adaptive Approach
- 斜带石斑鱼TLR22基因的克隆和鉴定
- Toll样受体在动脉粥样硬化炎症中的作
- 金欣口服液含药血清对呼吸道合胞病
- The Impact of ETC System on Safety Performance
- Toll样受体与抗病毒免疫
- TLR2在新生大鼠缺氧缺血性脑损伤后海
- 脑缺氧缺血增加新生大鼠海马区TLR4的
-
Differential ex
pression patterns of Toll-li
评论
共有 条评论