标题:求助,提示当前上下文不存在名称 conn,只是简单连接数据库
取消只看楼主
kanxue76
Rank: 1
等 级:新手上路
帖 子:2
专家分:2
注 册:2014-5-10
结帖率:0
已结贴  问题点数:20 回复次数:0 
求助,提示当前上下文不存在名称 conn,只是简单连接数据库
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Data.SqlClient;

namespace
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, RoutedEventArgs e)
        {
            using (SqlConnection conn = new SqlConnection("Data Source=.; Initial Catalog=Student;User ID=sa;Password=sa"));
            {
                conn.Open();
            }
        }
    }
}
conn一直提示不存在名称 改为别的也不行
搜索更多相关主题的帖子: 连接数据库 上下文 
2014-05-10 13:23



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




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

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