我可以避免在对 AS400 的 SQL 查询中指定库名称吗?

发布于 2024-07-26 05:04:19 字数 163 浏览 5 评论 0原文

各位大师,

我是否可以设置 DSN 以避免在 SQL 语句中出现“LIBRARY.TABLE”?

我们的测试和生产环境的不同之处在于测试 AS400 在与生产相同的库中没有“TABLE”。 我不想在从测试转向生产时更改代码。 这违背了目的。

克里斯

Gurus,

Is there anyway that I can setup my DSN to avoid having the say "LIBRARY.TABLE" in my SQL statements?

Our test and production environments differ in that the test AS400 does not have "TABLE" in the same library as production. I don't want to have to change code in moving from test to production. That defeats the purpose.

Chris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼泪 2024-08-02 05:04:19

是的,您可以通过使用 LibraryList 和 Default Collection 在连接字符串中指定表所在的库来完成此操作。 例如:

DataSource=Server;LibraryList=LIB1, LIB2, LIB3;UserID=something;Password=something;Default Collection=LIB1

如果您在系统/服务器上将 DSN 设置为 ODBC 连接,则可以在系统 DSN 配置对话框的服务器选项卡上的库列表和 SQL 默认库文本框。

Yes, you can do this by specifying the library that your table is in in your connection string using LibraryList and Default Collection. For example:

DataSource=Server;LibraryList=LIB1, LIB2, LIB3;UserID=something;Password=something;Default Collection=LIB1

If you have a DSN set up as an ODBC connection on your system/server, you can do the same in the Library list and SQL default library textboxes on the Server tab of the System DSN configuration dialog.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文