带有对话框的数据库配置源码

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Microsoft.Data.ConnectionUI;
using System.Xml;
namespace DSZQ
{
    public partial class DataConn : Form
    {
        public DataConn()
        {
            InitializeComponent();
            //filepath = Environment.CurrentDirectory;
            filepath =Application.StartupPath;
            filepath += "//App.config";
        }
        string filepath;
        string connstr;
       /// <summary>
       ///
       /// </summary>
       /// <param name="key"></param>
       /// <param name="strValue"></param>
        public void Modify(string key, string strValue)          //两个参数:要修改的键值   和   要修改的新值;                              
        {
          string   flagstr = strValue;
            if (strValue == string.Empty)
            {
                MessageBox.Show("连接串不能为空!");
                return;
            }
            //string XPath = "/configuration/userInfo/add[@key='?']";
            try
            {
                string XPath = "/configuration/appSettings/add[@key='?']";
                XmlDocument domWebConfig = new XmlDocument();

                //domWebConfig.Load((HttpContext.Current.Server.MapPath("web.config")));
                domWebConfig.Load(filepath);
                XmlNode addKey = domWebConfig.SelectSingleNode((XPath.Replace("?", key)));

                if (addKey == null)
                {
                    //Response.Write("<script>alert   (\"没有找到<add   key='" + key + "'   value=.../>的配置节\")</script>");
                    MessageBox.Show("没有找到<add   key='" + key + "'>的配置节");
                    return;
                }
                addKey.Attributes["value"].InnerText = strValue;
                domWebConfig.Save(filepath);
                MessageBox.Show("数据库连接配置成功","信息提示");
                txtConnectionString.Text = connstr;
                txtConnectionString.Enabled = false;
            }
            catch
            {
               // MessageBox.Show("在"+Environment.CurrentDirectory + "目录下找不到web.config配置文件","信息提示");
                txtConnectionString.Enabled = true;
                txtConnectionString.Clear();
                txtConnectionString.ForeColor = Color.Red;
                txtConnectionString.Text ="在" + Application.StartupPath + "目录下找不到App.config配置文件";
                return;
            }

        }

        private void buttonConn_Click(object sender, EventArgs e)
        {
            DataConnectionDialog dialog = new DataConnectionDialog();
            //添加数据源列表,可以向窗口中添加自己程序所需要的数据源类型
            dialog.DataSources.Add(DataSource.SqlDataSource);
            dialog.DataSources.Add(DataSource.OdbcDataSource);

            dialog.SelectedDataSource = DataSource.SqlDataSource;
            dialog.SelectedDataProvider = DataProvider.SqlDataProvider;
        

            //只能够通过DataConnectionDialog类的静态方法Show出对话框
            //不同使用dialog.Show()或dialog.ShowDialog()来呈现对话框
            if (DataConnectionDialog.Show(dialog, this) == DialogResult.OK)
            {
                connstr = dialog.ConnectionString;
                connstr = "Provider=SQLOLEDB.1;" + connstr;
                Modify("ConnStr",connstr);
             

            }
        }

   
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值