当前位置: 首页>>代码示例>>C#>>正文


C# DatabaseHelper.CheckConnection方法代码示例

本文整理汇总了C#中DatabaseHelper.CheckConnection方法的典型用法代码示例。如果您正苦于以下问题:C# DatabaseHelper.CheckConnection方法的具体用法?C# DatabaseHelper.CheckConnection怎么用?C# DatabaseHelper.CheckConnection使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DatabaseHelper的用法示例。


在下文中一共展示了DatabaseHelper.CheckConnection方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: btn_Connect_Click

        private void btn_Connect_Click(object sender, EventArgs e)
        {
            // @"data source=KHIEM-PC\SQLEXPRESS" + ";initial catalog=QLKhoDienLuc" + ";persist security info=True;user id=sa" + ";password=2051990" + ";MultipleActiveResultSets=True;";
            StringBuilder Con = new StringBuilder("Data Source=");
            Con.Append(txtServerName.Text);
            Con.Append(";Initial Catalog=");
            Con.Append(txtTenCSDL.Text);
            if (String.IsNullOrEmpty(txtUser.Text) && String.IsNullOrEmpty(txtPwd.Text))
                Con.Append(";Integrated Security=true;");
            else
            {
                Con.Append(";persist security info=True");
                Con.Append(";User Id=");
                Con.Append(txtUser.Text);
                Con.Append(";Password=");
                Con.Append(txtPwd.Text);
                Con.Append(";MultipleActiveResultSets=True;");
            }

            string strCon = Con.ToString();
            DatabaseHelper help = new DatabaseHelper();
            if (help.CheckConnection(strCon) == 0)
            {
                MessageBox.Show("Kết nối thất bại vui lòng kiểm tra lại thông tin ");
                return;
            }
            else
            {
                Utilities.clsThamSoUtilities.connectionString = strCon;
                help.CloseDatabase();
                updateConfigFile(strCon);
                this.Close();
            }
        }
开发者ID:itcthienkhiem,项目名称:DienLucHocMonCT,代码行数:34,代码来源:frmKetNoi.cs

示例2: DocFileCauHinh

        private void DocFileCauHinh()
        {
            try
            {

                XmlDocument XmlDoc = new XmlDocument();
                //Loading the Config file
                XmlDoc.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
                // XmlDoc.Load("App.config");
                foreach (XmlElement xElement in XmlDoc.DocumentElement)
                {
                    if (xElement.Name == "connectionStrings")
                    {
                        //setting the coonection string
                        var temp = xElement.LastChild.Attributes[1].Value;
                        try
                        {
                            DatabaseHelper help = new DatabaseHelper();
                            if (help.CheckConnection((string)temp) == 0)
                            {
                                frmKetNoi frm = new frmKetNoi();
                                frm.MdiParent = this;
                                // Display the new form.
                                frm.Show();
                            }
                            else
                            {
                                Utilities.clsThamSoUtilities.connectionString = temp;
                                help.CloseDatabase();
                            }//
                        }
                        catch (Exception ex)
                        {

                        }

                    }
                    if (xElement.Name == "appSettings")
                    {
                        bool temp = bool.Parse(xElement.ChildNodes.Item(0).Attributes[1].Value);
                        if (temp == true)
                        {
                            frmDangNhap frm = new frmDangNhap();
                            frm.MdiParent = this;
                            // Display the new form.
                            frm.Show();
                            return;
                        }
                        Utilities.clsThamSoUtilities.isSectionLogin = true;
                    }
                }
                //writing the connection string in config file
                //    XmlDoc.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);

                //clsThamSoUtilities.ID_Kho = int.Parse(config.AppSettings.Settings["IDkho"].Value.ToString());
            }
            catch (Exception ex)
            {
                // MessageBox.Show("Chưa cấu hình CSDL! Vui lòng cấu hình hệ thống trước.");
            }
        }
开发者ID:itcthienkhiem,项目名称:DienLucHocMonCT,代码行数:61,代码来源:Form1.cs


注:本文中的DatabaseHelper.CheckConnection方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。