通过 JDBC 的 AS400 风格命名
有什么方法可以通过 jt400 通过 JDBC 使用 AS400 样式库/文件样式命名吗? 我希望能够运行如下查询:
SELECT * FROM MYLIBRARY/MYFILE
谢谢
Is there any way I can use AS400 style library/file style naming over JDBC with jt400? I want to be able to run queries like:
SELECT * FROM MYLIBRARY/MYFILE
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 jdbc 命名属性设置为“system”。
http://javadoc.midrange.com/jtopen_6_3 /com/ibm/as400/access/doc-files/JDBCProperties.html
Set the jdbc naming property to "system".
http://javadoc.midrange.com/jtopen_6_3/com/ibm/as400/access/doc-files/JDBCProperties.html
这似乎取决于您使用的驱动程序。 对于我们的 .NET 项目,我们使用 IBM 驱动程序并使用“标准”iSeries 命名约定。
检查驱动程序中的选项。 我们的连接字符串中有“Naming=System”(再次使用 .NET 驱动程序),也许这可以解决这个问题。
It seems to depend on the driver you use. For our .NET projects we use the IBM drivers and we use the "standard" iSeries naming convention.
Check the options in the driver. We have "Naming=System" within our connection string (again using the .NET driver) Perhaps that will fix it.
有一种方法可以在 400 上使用 STRSQL 执行此操作,但据我所知,无法使用 JDBC
There is a way to do this on the 400 with STRSQL but not as far as I know with JDBC