标题:帮忙看下,在 System.ArgumentException 中第一次偶然出现的“System.Data. ...
取消只看楼主
fco
Rank: 1
来 自:China
等 级:新手上路
帖 子:3
专家分:4
注 册:2015-3-25
结帖率:0
已结贴  问题点数:20 回复次数:0 
帮忙看下,在 System.ArgumentException 中第一次偶然出现的“System.Data.dll”类型的异常
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace 链接数据库
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "")
            {
                MessageBox.Show("数据库不能为空");
            }
            else
            {
                try
                {
                    //server=MRC-8CF94303A82\\MRNET;database=" + textBox1.Text.Trim() + ";uid=sa;pwd=111";
                    string sqlstr = "78N5FN4H3YXS3GZ;database=" + textBox1.Text.Trim() + ";uid=sa;pwd=****";
                    //\\MRNET:database=" + textBox1.Text.Trim() + ";uid=sa;pwd=forever1997+
                    SqlConnection conn = new SqlConnection(sqlstr);
                    conn.Open();
                    if (conn.State == ConnectionState.Open)
                    {
                        label2.Text = "连接"+textBox1.Text+"数据库成功";
                    }
                }
                catch
                {
                    label2.Text = "连接"+textBox1.Text+"数据库失败";
                }
            }
        }
    }
}



上面是代码,目前怀疑我的sqlServer配置的问题,SQL的密码和账号没有错误,请教各位一下,这个问题运行可能出现一些的问题,和解决方案
搜索更多相关主题的帖子: private public 数据库 
2015-03-25 19:16



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-443091-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 1.151471 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved