本文介绍了错误:Windows服务中的SqlConnection失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从窗口服务应用程序中收到此错误

I got this error from my window service application

the type initializer for System.Data.SqlClient.SqlConnection threw an exception.



以下是代码:



The following is the code:

Sqlconnection objconn = new SqlConnection("Data Source=Server1;Initial Catalog=Personel;Integrated Security=True");


我没有使用app.config.我尝试了另一种方法,但仍然失败.

关于


I am not using the app.config. I tried a different way but still failed.

Regards

推荐答案




这篇关于错误:Windows服务中的SqlConnection失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 16:54