資源簡介
餐飲管理系統源碼
源碼描述:
(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?????????????????????{
????????????????????????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
評論
共有 條評論