用于SQL连接的WPF Windows身份验证

时间:2015-06-23 21:20:08

标签: c# sql wpf sspi

我有一个Windows窗体解决方案,我必须实现到WPF浏览器应用程序。所有代码都是根据文本框中给出的参数查询sql server。

string conString= @"Data Source = SQLserver; Initial Catalog = database; Integrated Security=SSPI;";
using (SqlConnection c = new SqlConnection(conString))
{
    c.Open();
    using (SqlDataAdapter a = new SqlDataAdapter(
    @"SELECT * from datatable where col1 = '" + textBox1.Text + @"' 
      Order By col2;", c))
    {
        // fill a data table
        a.Fill(source);
    }
}

此sql server仅接受集成的Windows身份验证。所以为了工作,我只需在所需的用户帐户下运行winform exe。

我怎么能以某种方式在同一个帐户下运行该WPF?请注意,它需要托管在Web服务器上,并且必须为许多用户提供。

0 个答案:

没有答案