使用系统数据源而不是用户数据源作为 ODBC 连接字符串
OdbcConnection DbConnection = null;
try
{
DbConnection = new OdbcConnection(
"Driver=SQL Anywhere 10;" +
"Uid=user;" +
"pwd=pass;" +
"Dsn=<name>");
DbConnection.Open();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.ReadKey();
System.Environment.Exit(0);
}
现在我的问题是,如果
是用户数据源名称,一切都很好。 另一方面,如果我使用 System-Datasourcename 作为
,它会抛出一个错误,指出它找不到 Datasourcename。有什么提示可以让我使用系统 DSN 吗?
提前致谢。
两个示例图像: https://i.sstatic.net/3h7vh.png http://imgur.com/5Govx
OdbcConnection DbConnection = null;
try
{
DbConnection = new OdbcConnection(
"Driver=SQL Anywhere 10;" +
"Uid=user;" +
"pwd=pass;" +
"Dsn=<name>");
DbConnection.Open();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
Console.ReadKey();
System.Environment.Exit(0);
}
Now my problem is that if <name>
is a User-Datasourcename everything is fine.
On the other hand if i use a System-Datasourcename as <name>
it throws me an error that it can't find the Datasourcename. Any hints how i could use a System DSN?
Thanks in advance.
Two example Images:
https://i.sstatic.net/3h7vh.png
http://imgur.com/5Govx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
X64 DSN 对于 X86 应用程序不可见...
X64 DSN is not visible for a X86 Application...