如何在 C# 中为 Adaptive Server Anywhere 网络服务器设置 ODBC 连接字符串
我有一个自适应服务器任何地方网络服务器(版本7.0),它的名称是“TestServer”。 现在,客户端想要使用 DOTNET 中的 OdbcConnetion 连接该服务器,如何设置连接字符串?
I have a adaptive server anywhere network server(version 7.0),it's name is "TestServer".
Now, Client want to connect this server using OdbcConnetion in DOTNET,How to set the connection string ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ODBC 使用 DSN 的连接字符串如下所示:
使用 DSN 要求客户端在客户端计算机上设置 ODBC DSN。
或者,如果您知道用户安装了哪个 ODBC 驱动程序,则可以在连接字符串中包含驱动程序详细信息:
然后在创建 OdbcConnection 对象时包含连接字符串:
或者之后:
The connection string for ODBC use DSN like this:
Using DSN requires the client to set up the ODBC DSN on the client computer.
Alternatively, you can include the driver details in the connection string if you know what ODBC driver the user has installed:
Then include the connection string in the creation of the OdbcConnection object:
Or after:
对于此类问题,连接字符串是您最好的资源。
For questions like this Connection Strings is your best resource.