资源简介
酒店的餐饮管理系统,实现日常的订餐管理,餐桌管理,酒店管理,结账管理。适合于毕业设计。
代码片段和文件信息
package com.alex.restrantol.base;
import java.sql.*;
public class baseDao {
public Connection getConn() {
try {
Class.forName(“com.microsoft.sqlserver.jdbc.SQLServerDriver“);
return DriverManager.getConnection(
“jdbc:sqlserver://localhost:1433;DatabaseName=restrant“ “sa“
“123“);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
public void closeAll(Connection con PreparedStatement ps ResultSet rs) {
try {
if (rs != null) {
rs.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (ps != null) {
ps.close();
}
} catch (SQLException e) {
e.printStackTrace();
}
try {
if (con != null && (!con.isClosed())) {
con.close();
}
} catch (SQLExcep
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 549 2014-05-11 17:18 restrant\.classpath
文件 0 2009-11-16 18:09 restrant\.me
文件 3032 2009-11-16 18:09 restrant\.me
文件 80 2009-11-16 18:09 restrant\.me
文件 842 2009-11-16 18:09 restrant\.me
文件 16286 2009-11-16 18:09 restrant\.me
文件 0 2009-11-16 18:09 restrant\.me
文件 1 2009-11-16 18:09 restrant\.me
文件 57 2009-11-16 18:09 restrant\.me
文件 1 2009-11-16 18:09 restrant\.me
文件 77 2009-11-16 18:09 restrant\.me
文件 319 2009-11-16 18:09 restrant\.me
文件 83 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
文件 104 2009-11-16 18:09 restrant\.me
............此处省略264个文件信息
相关资源
- NodeJs实时通讯(WebSocket聊天室)
- WebForm中EasyUI DataGrid
- web网页制作期末大作业
- 中控指纹仪Live20R的WEB开发包.rar
- 产品馆axurewechat web分享版.rplib
- axure通用元件库 PcWeb端原型图组件库高
- 用Echarts+web中实现大屏展示效果
- Axure 8 Web前端+后台+移动前端 元件库
- web前端黑客技术揭秘
- BEA Weblogic Server 管理指南
-
if
rame -web简单的WEB框架if rame - springboot使用axis1.4的demo
- json编辑操作的工具,可用于web开发
-
Extensible web attack fr
amework - PB接口 调用webservice
- 御剑WEB目录扫描优化版+注册工具
- 餐饮管理系统系统设计说明书
- .net企业门户网站源码(0520_).rar
- weblogic日志设置
- 华工web程序设计平时作业+大作业
- WEB应用系统安全分析与设计
- .net web 开发平台- 表单设计器(EXTJS)
- 电子商城前端代码
- web并发&压力测试工具http_loadWin32
- web课程设计内有文档和源码
- web前端-css布局
- MyEclipse10上使用WebService的源码
- Weblogic12c配置部署说明.docx
- WebCracker40 带字典文件
- linux下视频监控
评论
共有 条评论