c#开发会员管理系统遇到的问题

main.png

开发这个系统,是因为女朋友想要做脱毛会员来访记录了。。。

问题1:如何连接数据库

csharp中使用数据库需要引入:System.Data.SqlClient
首先新建一个类文件SqlServerInfo,在其中定义数据库的基本信息和数据库连接字符串
文件名:SqlServerInfo.cs

内容如下:

 struct LoginFormSQLInfo
    {
        public static string SQLServerAddr="127.0.0.1";//本地数据库
        public static string SQLUserName="sa";//使用sa验证
        public static string SQLUserPass="123456";//数据库密码
        public static string SQLDataBase= "AmiroBase";//连接的数据库名称
    }
    
    class SqlServerInfo
    {
        public static string LoginSQLConnectStr = $"server={LoginFormSQLInfo.SQLServerAddr};uid={LoginFormSQLInfo.SQLUserName};pwd={LoginFormSQLInfo.SQLUserPass};database={LoginFormSQLInfo.SQLDataBase};Connection Timeout=5;MultipleActiveResultSets=true";

    }//数据库连接字

之后定义一个类OpenSQLSERVER,用来进行数据库连接等操作,内容如下:

SqlConnection LoginConnectResult = new SqlConnection(SqlServerInfo.LoginSQLConnectStr);//传入SqlServerInfo类中的数据库连接字
        public SqlConnection Start()
        {
            LoginConnectResult.Open();
            return LoginConnectResult;//打开数据库,返回结果
        }
        public void Close()
        {
            LoginConnectResult.Close();//关闭连接
        }

这里都定义好了,理论来讲就可以执行数据库的登录操作了,然而为了避免用户没有安装数据库的问题,在窗口加载出来之前应该查询是否安装SQL serve数据库,在program.cs文件中添加如下内容:

                bool State;
                CheckSQLServer CSL = new CheckSQLServer();
                State = CSL.SQLServerInstallState();
                if (!State)
                {
                    MessageBox.Show("系统检测到您没有安装SQLSERVER或SQLSERVER版本低于2008,请重新安装SQLSERVER。", "警告", MessageBoxButtons.OK, MessageBoxIcon.Error);//弹出提示
                }

CheckSQLServer是检查数据库是否安装的一个类,其内容如下:

         bool State;
        string SoftWareRegistrPath;
        RegistryKey LocalMachinePath;
        public CheckSQLServer()
        {
            SoftWareRegistrPath = @"Software\Microsoft\MSSQLServer\MSSQLServer";//SQLSERVER安装的注册表目录
            LocalMachinePath = Registry.LocalMachine.OpenSubKey(SoftWareRegistrPath, false);//查询注册表项
            if (LocalMachinePath != null)
            {
                State = true;
            }
            else
            {
                State = false;
            }
        }
        public bool SQLServerInstallState()
        {
            return State;
        }

因为不管是连接数据库失败,还是端口或者数据库不存在,他们抛出的异常都是一样的,只有Message信息不同,所以我们全部捕获,然后写入到log中,首先定义一个WriteLog类,其内容如下:

 public void WriteToLogFile(string ErrorText)
        {
            string LogFileName = Application.StartupPath+@"\log.txt";//程序目录下面添加一个log文件
            string CheckTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");//获取发生log的时间
            StreamWriter FileWrite = new StreamWriter(LogFileName,true);//实例化streamwriter对象
            FileWrite.WriteLine(CheckTime+"\t"+ErrorText);//写入log日志
            FileWrite.Flush();//清除缓冲区
            FileWrite.Close();//关闭对象
        }

考虑到在开发过程中需要多次使用到messagebox函数,所以新建一个类ShowMessageBox,在其内部重载原类函数,内容如下:

public void ShowError(string Content, string Caption)
        {
            MessageBox.Show(Content,Caption,MessageBoxButtons.OK,MessageBoxIcon.Error);
        }
        public void ShowInforMation(string Content, string Caption)
        {
            MessageBox.Show(Content, Caption, MessageBoxButtons.OK, MessageBoxIcon.Information);
        }
        public void ShowWarining(string Content, string Caption)
        {
            MessageBox.Show(Content, Caption, MessageBoxButtons.OK, MessageBoxIcon.Warning);
        }

然后进行登录界面的异常捕获操作:

 ShowMessageBox SMB = new ShowMessageBox();
            try
            {
                if (Login_Form_UserName.Text.Trim() == "" && Login_Form_UserPassword.Text.Trim() == "")
                {
                    SMB.ShowError("请输入账号密码", "错误");
                }
               else
                {
                          //...
                }
catch (Exception ErrorMessage)
            {
                WriteLog WLG = new WriteLog();
                WLG.WriteToLogFile(ErrorMessage.Message);//写入日志
                SMB.ShowError("数据库连接失败,可能是以下原因:\n1.数据库的账号密码没有设为sa/123456\n2.数据库端口没有启动\n3.数据库服务没有启动\n4.其他异常问题\n请检查之后重试。", "错误");
            }

为了保证程序的稳定性,新定义一个类CheckSQLProcess用于检测数据库进程是否存在,防止数据库服务没有启动导致日志过多无效错误:

public bool SQLRunState()
        {
            Process[] ProcessArray;
            ProcessArray = Process.GetProcessesByName("sqlservr");//查找sqlservr进程
            if (ProcessArray.Length != 0)
            {
                return true;//存在进程
            }
            else
            {
                return false;//不存在
            }
        }

因为每次出现错误都会对log文件进行写入数据,且不做覆盖,方便查找错误存在,所以必然需要对日志文件大小进行控制,所以新建一个类CheckLogFileSize,内容如下:

string LogFileName = Application.StartupPath + @"\log.txt";
        public CheckLogFileSize()
        {
            bool FileState;
            FileState = File.Exists(LogFileName);
            if (FileState)
            {
                double FileLengh;
                FileInfo FileSize = new FileInfo(LogFileName);//获取log文件信息
                FileLengh = Math.Ceiling(FileSize.Length / 1024.0);//获取文件大小
                if (FileLengh >= 800)
                {
                    File.Delete(LogFileName);//删除log日志
                }
            }
            else
            {
                //
            }

//上面提到的检测数据库进程和检测文件大小都是在登录窗口载入完成之后进行操作的。
前期保障工作已经做完了,接下来就可以开始写详细的登录和查询数据过程了

2. 登录和验证

执行数据库语句需要使用到sqlcommand类,然后构造sqlcommand中的参数,然后进行数据读取,可写成如下形式:

                    SqlConnection LoginConnectResult = null;//定义一个sqlconnection类型
                    OpenSQLSERVER OSS = new OpenSQLSERVER();
                    LoginConnectResult = OSS.Start();//打开数据库
                    SqlCommand SQLCMD = LoginConnectResult.CreateCommand();//创建command
                    SQLCMD.CommandType = CommandType.Text;//command类型为text,也就是sql语句
                    SQLCMD.CommandText = $"select UserName from Super_Info";//执行查询操作
                    SqlDataReader UnameRead = SQLCMD.ExecuteReader();//执行操作,此操作可以读取到返回的数据
                    if (UnameRead.Read())
                     {
                            string ReaderUserName = UnameRead["UserName"].ToString();//取出字段数据
                            //Read方法返回数据,如果可以接着读取证明数据存在,此时可以取出数据
                      }
                        if (ReaderUserName == Login_Form_UserName.Text.Trim())//判断是否和输入相等
                        {
                            UnameRead.Close();//关闭上一个read流
                            SQLCMD.CommandText = "select PassWord from Super_Info";
                            SqlDataReader PassWordRead = SQLCMD.ExecuteReader();
                            if (PassWordRead.Read())
                            {
                                string ReaderPassWord = PassWordRead["PassWord"].ToString();//读取密码
                                if (ReaderPassWord == Login_Form_UserPassword.Text.Trim())//比对
                                {
                                    SMB.ShowInforMation("登录成功", "提示");
                                    PassWordRead.Close();//关闭数据流
                                    LoginConnectResult.Close();//关闭数据库连接,供其他类使用
                                    Hide();
                                    MemberInfoForm MIF = new MemberInfoForm();
                                    MIF.Show();//显示会员信息窗口
                                }
                                else
                                {

                                    SMB.ShowError("密码错误,请重新登录", "错误");
                                }
                            }
                        }
                        else
                        {
                            SMB.ShowError("账号错误,请重新登录", "错误");
                        }

以上便是登录验证的过程

你可能感兴趣的:(c#开发会员管理系统遇到的问题)