资源简介
餐饮管理系统源码
源码描述:
(1)密码修改:普通用户和管理员可以根据需要修改个人密码。
(2)主界面:普通用户和管理员可在主界面进行查询、开台、点菜、消费查询、结账操作。
(3)桌台信息:管理员可以对桌台进行增、删、改、查操作。
(4)菜单信息:管理员可以对菜单以及菜单分类进行增、删、改、查操作。
(5)职员信息:管理员可以对职员进行增、删、改、查操作。
(6)按日进行统计:管理员和普通用户可对营业额进行按日期统计。
(7)按月进行统计:管理员和普通用户可对营业额进行按月份统计。
(8)按年进行统计:管理员和普通用户可对营业额进行按年份统计。
(9)用户管理:管理员可以对用户进行增删改操作。
(10)系统设置:管理员可以对数据库进行备份、还原、初始化操作。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Configuration;
using System.Data.SqlClient;
using System.Data;
namespace Restaurant
{
public static class DbHelperSQL
{
private static string connectionString = ConfigurationManager.AppSettings[“ConnectionString“];
#region 公用方法
///
/// 判断是否存在该查询结果
///
/// SQL语句
/// bool型
public static bool Exists(string strSql)
{
object obj = GetSingle(strSql);
int cmdresult;
if ((object.Equals(obj null)) || (object.Equals(obj System.DBNull.Value)))
{
cmdresult = 0;
}
else
{
cmdresult = int.Parse(obj.ToString());
}
if (cmdresult == 0)
{
return false;
}
else
{
return true;
}
}
#endregion
#region 执行简单SQL语句
///
/// 执行SQL语句,返回影响的记录数
///
/// SQL语句
/// 影响的记录数
public static int ExecuteSql(string SQLString)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand(SQLString connection))
{
try
{
connection.Open();
int rows = cmd.ExecuteNonQuery();
return rows;
}
catch (System.Data.SqlClient.SqlException e)
{
connection.Close();
throw e;
}
}
}
}
///
/// 执行多条SQL语句,实现数据库事务。
///
/// 多条SQL语句
public static int ExecuteSqlTran(List SQLStringList)
{
using (SqlConnection conn = new SqlConnection(connectionString))
{
conn.Open();
SqlCommand cmd = new SqlCommand();
cmd.Connection = conn;
SqlTransaction tx = conn.BeginTransaction();
cmd.Transaction = tx;
try
{
int count = 0;
for (int n = 0; n < SQLStringList.Count; n++)
{
string strsql = SQLStringList[n];
if (strsql.Trim().Length > 1)
{
cmd.CommandText = strsql;
count += cmd.ExecuteNonQuery();
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-05-17 18:18 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\
目录 0 2013-03-22 15:45 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\
目录 0 2014-03-19 10:12 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\MDF\
文件 3145728 2014-03-19 10:11 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\MDF\Restaurant.mdf
文件 1048576 2014-03-19 10:11 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\MDF\Restaurant_log.ldf
目录 0 2013-03-22 15:45 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\备份\
文件 1724928 2013-03-25 12:52 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\备份\back.bak
目录 0 2013-03-22 15:50 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\脚本\
文件 9428 2013-03-25 12:53 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\DB\脚本\Restaurant.sql
目录 0 2014-03-19 09:55 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\
文件 920 2013-03-29 20:41 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant.sln
目录 0 2014-03-19 09:55 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\App_Data\
目录 0 2014-03-19 10:00 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\bin\
文件 7168 2009-08-27 20:32 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\bin\FusionCharts.dll
文件 54272 2014-03-19 10:00 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\bin\Restaurant.dll
文件 155136 2014-03-19 10:00 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\bin\Restaurant.pdb
目录 0 2014-03-19 09:54 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\css\
文件 16527 2013-03-16 18:25 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\css\css.css
文件 833 2013-03-17 11:33 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\css\rightmenu.css
目录 0 2014-03-19 09:54 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\data\
文件 1724928 2013-03-25 12:52 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\data\back.bak
文件 5542 2013-03-22 11:16 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\DbHelperSQL.cs
目录 0 2014-03-19 09:54 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\DB_51aspx\
文件 3145728 2014-03-18 15:35 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\DB_51aspx\Restaurant.mdf
文件 1048576 2014-03-18 15:35 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\DB_51aspx\Restaurant_log.LDF
文件 4848 2013-03-25 08:43 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\Default.aspx
文件 1620 2014-03-18 15:27 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\Default.aspx.cs
文件 3335 2013-03-16 16:39 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\Default.aspx.designer.cs
目录 0 2014-03-19 09:54 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\files\
文件 6890 2013-03-25 11:13 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\files\addfood.aspx
文件 6167 2013-03-25 11:13 LORepast_01d7ad45-88bb-4e07-a6a1-aefe4b71d728\Restaurant\files\addfood.aspx.cs
............此处省略103个文件信息
- 上一篇:基于web投票系统(20131112
- 下一篇:高校宿舍管理系统源码20140428
相关资源
- 高校宿舍管理系统源码20140428
- 基于web投票系统(20131112
- 台球厅管理系统源码20130321
- 在线考试系统(课程设计)源码
- 超市会员管理系统源码20110803
- 游戏点卡销售管理系统源码
- web--文档管理系统
- .net小型论坛系统源码
- 宋体简体常用系统字体安装文件.TTF
- 叶嘉雄光电系统与信号处理教材
- 发票(票据)连续打印(套打)系统
- linux系统移植嵌入式linux系统:内核、
- 凸优化在信号处理与通信中的应用C
- 小区物业管理系统毕业设计论文
- 基于web的外卖订餐系统用户手册
- 外聘教师管理系统
- 操作系统清华大学出版社-第三版.pd
- 西门子wincc中文系统基本操作手册.p
- 经典网站后台管理模板
- QT版学生成绩管理系统源码,未使用数
- 浙商银行数据仓库系统高层架构设计
- DRP分销系统界面原型(EXT版)
- 学生信息管理系统 程序加论文
-
Myba
se Desktop V7.2 破解注册 - 30天自制操作系统中文版光盘 源码中
- 基于SSM的服装商城销售系统毕业论文
- 三面铣组合机床PLC控制系统设计
- VFP经典例程-通用工资管理系统源码
- 教材征订系统毕业设计
- 基于单片机的智能家居控制系统设
评论
共有 条评论