从智能设备连接到MS SQL Server

时间:2015-04-22 05:22:12

标签: c# compact-framework

我在Visual Studio 2008中从智能设备项目连接到MS SQL Server时遇到了麻烦。

    private void button2_Click(object sender, EventArgs e)
    {
        string connStr = "Data Source=SERVER-5;Initial Catalog=MydB;Integrated Security=SSPI;Connection Timeout=5";

        DataTable data;

        using (var connection = new SqlConnection(connStr))
        {
            try
            {
                var sda = new SqlDataAdapter("select * from pri_date", connection);
                var ds = new DataSet();
                sda.Fill(ds);
                data = ds.Tables[0];
            }
            catch (SqlException ex)
            {
                var exc = ex.InnerException;
            }
        }
    }

我试图在Visual Studio中运行此代码并且我收到错误"未找到指定的SQL服务器:SERVER-5"

当我尝试在Windows应用程序中启动此代码时,一切正常。

0 个答案:

没有答案