枚举计算机上设置的 DSN 列表
我有一个 Excel 应用程序,我想在其中向用户显示数据源名称(即:DSN)的列表,以便他/她可以选择要使用的数据源。
希望一旦获得列表,我就可以轻松访问 DSN 属性以连接到适当的数据库。
请注意,我不想想要使用无 DSN 连接。
I have an Excel application in which I want to present the user with a list of the Data Source Names (ie: DSN's), whereby s/he can choose what data source to use.
Hopefully once I've got the list, I can easily access the DSN properties to connect to the appropriate database.
Please note, I do not want to use a DSN-less connection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
DSN 条目存储在注册表中的以下项中。
这包含所有定义的 DSN 的列表。 这充当全局索引,每个 DSN 的具体详细信息存储在带有 DSN 名称的键中:
从数据源 (ODBC) 控制面板小程序在用户 DSN 和系统 DSN 选项卡中创建一些条目,并检查这些值的情况存储在注册表中。
以下示例枚举通过“控制面板”>“用户”定义的 DSN。 管理工具> 数据源 (ODBC) [用户 Dsn 选项卡]。
http://support.microsoft.com/kb/178755
The DSN entries are stored in the registry in the following keys.
This contains the list of all defined DSN. This acts as an global index and the specific details for each DSN are stored in a key with the DSN name under:
Create some entries in both User DSN and System DSN tabs from Data Sources (ODBC) control panel applet and check how these values are stored in the registry.
The following example enumerate the DSN defined for the user trough Control Panel > Administrative Tools > Data Sources (ODBC) [User Dsn Tab].
http://support.microsoft.com/kb/178755
您可以使用 ODBC API 的SQLDataSources 函数。 请参阅 MSDN 文档。
You can use the SQLDataSources function of the ODBC API. See MSDN documentation.
非常酷的解决方案。 我遇到了一个问题,CURRENT_USER 没有显示所有 DSN,当然不是我需要的 DSN。 我将其更改为 LOCAL_MACHINE,并看到连接管理器中显示的所有 DSN,包括 CURRENT_USER 下显示的子集。
http://msdn.microsoft。 com/en-us/library/windows/desktop/ms712603(v=vs.85).aspx
Extremely cool solution. I ran into an issue where CURRENT_USER wasn't showing all the DSN's, certainly not the one I needed. I changed it to LOCAL_MACHINE and saw all DSN's that showed up in the Connection Manager, including the subset that showed up under CURRENT_USER.
http://msdn.microsoft.com/en-us/library/windows/desktop/ms712603(v=vs.85).aspx