资源简介
严格按照软件工程的思想分阶段推进毕业设计工作,并在毕业论文中充分体现软件工程理论在应用系统开发过程中的应用,毕业设计任务是进行基于B/S为基础,JSP+Javabean模式来对系统进行开发. 该系统的具体设计内容为: 1.使用数据库进行数据存储及相关操作; 2.实现出租车信息的管理、经营者信息管理及司机信息管理。
代码片段和文件信息
package db;
import java.sql.*;
public class Datebase {ResultSet rs = null ;
//连接数据库,并执行SQL查询语句,返回结果指针
public ResultSet executeQuery(String sql){
try {
Class.forName(“com.mysql.jdbc.Driver“);
Connection con= DriverManager.getConnection(“jdbc:mysql://localhost:3306/test“ “root“ “111111“);
Statement stmt=con.createStatement();
rs = stmt.executeQuery(sql);
}catch (Exception ex){
ex.printStackTrace();
System.out.print(“数据库连接失败“);
}
return rs ;
}
//连接数据库,并执行SQL更新语句,返回结果状态
public int executeUpdate(String sql){
int count = 0 ;
try{
Class.forName(“com.mysql.jdbc.Driver“);
Connection con= DriverManager.getConnection(“jdbc:mysql://localhost:3306/test“ “root“ “111111“);
Statement stmt=con.createStatement();
count = stmt.executeUpdate(sql);
}catch(Exception ex){
ex.printStackTrace();
System.out.print(“数据库操作失败“);
}
return count;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-05-27 15:20 shouye\
文件 434 2012-05-20 20:53 shouye\.classpath
目录 0 2012-05-27 15:20 shouye\.myeclipse\
文件 291 2012-05-15 11:25 shouye\.myme
文件 1412 2012-05-15 11:29 shouye\.project
目录 0 2012-05-27 15:20 shouye\.settings\
文件 406 2012-05-15 11:25 shouye\.settings\.jsdtscope
文件 88 2012-05-15 20:45 shouye\.settings\org.eclipse.core.resources.prefs
文件 334 2012-05-15 11:25 shouye\.settings\org.eclipse.jdt.core.prefs
文件 49 2012-05-15 11:25 shouye\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2012-05-15 11:25 shouye\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2012-05-27 15:20 shouye\src\
目录 0 2012-05-27 15:20 shouye\src\db\
文件 985 2012-05-26 12:14 shouye\src\db\Dateba
目录 0 2012-05-27 15:20 shouye\WebRoot\
文件 1830 2012-05-22 15:45 shouye\WebRoot\add.jsp
文件 6583 2012-05-26 21:46 shouye\WebRoot\chen1.jsp
文件 2796 2012-05-27 15:10 shouye\WebRoot\chen2.jsp
文件 2926 2012-05-26 15:50 shouye\WebRoot\chen3.jsp
文件 2412 2012-05-27 14:47 shouye\WebRoot\chen4.jsp
文件 1286 2012-05-26 11:39 shouye\WebRoot\chen5.jsp
文件 3189 2012-05-25 20:51 shouye\WebRoot\chen6.jsp
文件 5555 2012-05-27 14:48 shouye\WebRoot\chenjun1.jsp
文件 2869 2012-05-25 20:59 shouye\WebRoot\chenjun2.jsp
文件 4158 2012-05-26 16:20 shouye\WebRoot\chenjun3.jsp
文件 2427 2012-05-27 14:49 shouye\WebRoot\chenjun4.jsp
文件 1547 2012-05-22 12:05 shouye\WebRoot\index.jsp
文件 5021 2012-05-27 14:50 shouye\WebRoot\jun1.jsp
文件 2865 2012-05-25 21:06 shouye\WebRoot\jun2.jsp
文件 4161 2012-05-26 16:15 shouye\WebRoot\jun3.jsp
文件 2417 2012-05-27 14:51 shouye\WebRoot\jun4.jsp
............此处省略25个文件信息
相关资源
- 李晓峰通信原理.zip
- 图解西门子S71200PLC入门到实践(清晰
- AI拓客商家联盟V2.1.3前端+后端.rar
- echarts大数据领导仓demo.rar
- [C51单片机开发工具Keil.UV4].Keil.C51.V9
- Deep_Learning_2016.pdf
- zw_Classification1.zip
- Griffiths-IntroductiontoElectrodynamics4thEdit
- ParaViewTutorial.pdf
- xyisv_10236804.zip
- 计算机图形学第4版高清电子书.pdf
- 《多粒度知识获取与不确定性度量》
- 华成英模电课件.zip
- 70d0cd041f738f12db575d3b46e97582.pdf
- OfficeTabEnterprise13.1.zip
- wxu998.rar
- PowerDesigner16.5汉化文件.rar
- jsgis.zip
- PinyinIME(关键代码写了注释).zip
- 锁相环设计、仿真与应用第5版中.pd
- novelOnLine.zip
- SingleSensorImagingMethodsandApplicationsforDi
- ControlSystemsEngineering7th(NormanS.Nise)
- ModernControlSystems13th(RichardC.Dorf).ra
- VectorMagic_1.15pojie.rar
- complexityoflattice__problems.pdf
- xnby_883749.zip
- TOGAF培训讲义-周金根.pdf
- OS12.2驱动,手机虚拟定位软件,Loca
- 大话系列-大话数据结构(pdf高清版)
评论
共有 条评论