从 sqlclient 连接访问 .UDL 文件
我有一个 .udl 文件,其中包含以下连接字符串
[oledb]
; Everything after this line is an OLE DB initstring
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial
Catalog=Client_DB050208;Data Source=IAEADB\IAEADBDEV;;Network Library=dbmssocn
现在我尝试从
sConnectStr = "D:\PROBIS\ABC.udl" from one of my .vb class
NOTE 之类的语句访问此 .udl 文件:我需要使用 SqlClient.SqlConnection
。
那么我可以从 SqlClient.sqlConnection
访问这个 .udl
吗?
请回到这个问题
提前致谢
I have a .udl file with the following connection string in it
[oledb]
; Everything after this line is an OLE DB initstring
Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial
Catalog=Client_DB050208;Data Source=IAEADB\IAEADBDEV;;Network Library=dbmssocn
Now I am trying to access this .udl file from the statement like
sConnectStr = "D:\PROBIS\ABC.udl" from one of my .vb class
NOTE : I need to use SqlClient.SqlConnection
.
So can I access this .udl
from SqlClient.sqlConnection
.
Please get back to this question
Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来你可以在 OLDEBConnection 而不是 SQL Connection 中得到它。 请参阅此处
有点道理。 否则只需解析文件。
It seems that you could get this in a OLDEBConnection not SQL Connection. See here
Sort of makes sense. Otherwise just parse the file.