使用 Delphi 以编程方式获取 ODBC 数据源名称列表
我看到几个示例,其中源名称列表取自注册表(HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources)。还有其他方法可以获取 ODBC 数据源名称列表吗?
我只需要使用 Delphi 标准组件,因此无法使用 3d 方解决方案。
I saw several examples where the list of the source names were took from registry (HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources). Is there any other way to get the list of ODBC data sources names?
I need to work only with Delphi standard components, so I can not use 3d party solutions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须使用 ODBC32 中的 SQLDataSources 函数.DLL。对于示例。
You have to use SQLDataSources function from ODBC32.DLL. For example.
正如 @da-soft 在他们的回答中所述,SQLDataSources 将执行此操作。然而,由于他们提供的链接不再有效,这里有一个实际的例子(改编自 Menno Avegaar 对 一篇旧的 Delphi 小组帖子):
As @da-soft stated in their answer, SQLDataSources in ODBC32.DLL will do this. However, as the link they provided is no longer working, here's an actual example (adapted from Menno Avegaar's answer to an old delphi groups post):