找传奇、传世资源到传世资源站!

超市前台结算系统

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

超市前台结算系统链接数据库,增删改赋值给前台from clipboard
class SQLHelper
    { 
       //连数据库
        public static string connString = "server=.;DataBase=StudentManageDB;Uid=sa;Pwd=Sqtj2020";
       //增删改
        public static int Update(string sql)
        {
            SqlConnection conn = new SqlConnection(connString);
            SqlCommand cmd = new SqlCommand(sql, conn);
            try
            {
                conn.Open();
                int result = cmd.ExecuteNonQuery();
                return result;
            }
            catch (Exception ex)
            {

                throw ex;
            }
            finally
            {
                conn.Close();
            }

        }
        public static object GetSingleResult(string sql)
        {
            SqlConnection conn = new SqlConnection(connString);
            SqlCommand cmd = new SqlCommand(sql, conn);
            try
            {
                conn.Open();
                object result = cmd.ExecuteNonQuery();
                return result;

            }
            catch (Exception ex)
            {

                throw ex;
            }

            finally
            {
                conn.Close();
            }
        }

        public static SqlDataReader GetReader(string sql)
        {
            SqlConnection conn = new SqlConnection(connString);
            SqlCommand cmd1 = new SqlCommand(sql, conn);
            try
            {
                conn.Open();

                //表示看不懂**********
                return cmd1.ExecuteReader (CommandBehavior.CloseConnection);
            }
            catch (Exception ex)
            {

                throw ex;
            }
            
        }
    }

.
├── HYWJ.suo
├── SMProject
│   ├── SMProject
│   │   ├── App.config
│   │   ├── FrmBalance.cs
│   │   ├── FrmBalance.designer.cs
│   │   ├── FrmBalance.resx
│   │   ├── FrmLogin.cs
│   │   ├── FrmLogin.designer.cs
│   │   ├── FrmLogin.resx
│   │   ├── FrmSaleManage.cs
│   │   ├── FrmSaleManage.designer.cs
│   │   ├── FrmSaleManage.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── SMProject.csproj
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── SMProject.exe
│   │   │   │   ├── SMProject.exe.config
│   │   │   │   ├── SMProject.pdb
│   │   │   │   ├── SMProject.vshost.exe
│   │   │   │   ├── SMProject.vshost.exe.config
│   │   │   │   └── SMProject.vshost.exe.manifest
│   │   │   └── Release
│   │   └── obj
│   │       └── Debug
│   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           ├── SMProject.FrmBalance.resources
│   │           ├── SMProject.FrmLogin.resources
│   │           ├── SMProject.FrmSaleManage.resources
│   │           ├── SMProject.Properties.Resources.resources
│   │           ├── SMProject.csproj.FileListAbsolute.txt
│   │           ├── SMProject.csproj.GenerateResource.Cache
│   │           ├── SMProject.csprojResolveAssemblyReference.cache
│   │           ├── SMProject.exe
│   │           ├── SMProject.pdb
│   │           └── TempPE
│   ├── SMProject.sln
│   └── SMProject.v12.suo
└── 找例子网_SMProject.rar

9 directories, 38 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复