黑马程序员技术交流社区

标题: 出错在哪? [打印本页]

作者: ↖落葉下♀媃媚    时间: 2013-5-14 16:20
标题: 出错在哪?
OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = "文本文件|*.txt";
            if(ofd.ShowDialog()!=true)
            {
                return;
            }
            string filename = ofd.FileName;
            //File.ReadAllLines()是把文件一次读取到string集合中
            IEnumerable<string> lines = File.ReadLines(filename);
            foreach (string line in lines)
            {//把"小红|16"按照|分割
                string[] str = line.Split('|');
                string name = str[0];
                string age = str[1];
                SqlHelper.ExecuteNonQuery("insert into Tusername(Name, Age) values(@Name,@Age)",
                new SqlParameter("@Name", name),
                new SqlParameter("@Age", Convert.ToInt32(age)));
            }
            MessageBox.Show("导入成功!导入"+lines.Count()+"条数据");
        }
代码没出错,运行怎么不行,错在哪?错误 1 当前上下文中不存在名称“ConfigurationManager” C:\Users\Lenovo\Documents\Visual Studio 2010\Projects\Ado.net数据库绑定\Ado.net数据库绑定\SqlHelper.cs 14 13 Ado.net数据库绑定
这是什么意思?

作者: 李礼彬    时间: 2013-5-14 17:39
当前上下文中不存在名称“ConfigurationManager”

→ 在项目列表下 右键“引用”
→ 选择System.Configuration添加引用
→ 再在SqlHelper.cs里面添加using System.Configuration命名空间引用

注意看错误提示,出错了要知道打断点,一步步看出错误出在哪里

作者: ↖落葉下♀媃媚    时间: 2013-5-14 21:45
李礼彬 发表于 2013-5-14 17:39
当前上下文中不存在名称“ConfigurationManager”

→ 在项目列表下 右键“引用”

嗯,这个问题解决了,可是怎么数据插不进去,是空的?




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2