Delphi ODBC 连接对话框组件?
我正在考虑向应用程序添加 ODBC 数据库连接。
用户将在运行时配置并选择其数据库 odbc 连接。
是否有任何组件可以为我提供所需的一系列对话框?
允许用户选择数据源类型、选择驱动程序、浏览 定义 ODBC 连接等。
干杯 山姆
I am thinking about adding ODBC database connectivity to an application.
The user will at runtime configure and select their database odbc connection.
Are there any components that will give me the required series of dialogs ?
Allowing the user to select the data source type, select drivers, browse already
defined ODBC connections etc.
Cheers
Sam
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 ADO 组件,您可以尝试此操作。
选项 1
选项 2
选项 3
您必须选择“Microsoft OLE DB Provider for ODBC Drivers”
再见。
You can try this, if you are using ADO components.
Option 1
Option 2
Option 3
You must Select "Microsoft OLE DB Provider for ODBC Drivers"
Bye.
PromptDataSource 来自 ADODB 单元的函数。两个参数是
必需:
连接字符串。如果您不需要默认连接字符串
只需传递一个空字符串:
var sConn : WideString;
开始
sConn := PromptDataSource(Form1.Handle, '');
end;
PromptDataSource Function from the ADODB unit. Two parameters are
required:
a connection string . If you want no default connection string
just pass an empty string as:
var sConn : WideString;
begin
sConn := PromptDataSource(Form1.Handle, '');
end;