在 .NET 应用程序中使用本地 ODBC 连接?
希望这是一个简单的...我刚刚启动一个应用程序,我想使用在 Windows 控制面板的管理工具部分的数据源下指定的 ODBC 连接之一。
我将如何设置数据库连接来使用这些详细信息?
Hopefully this is an easy one... I'm just starting an application and I'd like to use one of the ODBC connections specified under Data Sources in the Administrative Tools section of the Control Panel in Windows.
How would I go about setting up a database connection to use those details?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该像设置连接字符串一样简单:
“Dsn=DsnName; Uid=UserName;Pwd=Password;”
所以在代码中..
It should be as simple as setting the connection string as:
"Dsn=DsnName; Uid=UserName;Pwd=Password;"
So in code..