如何检测我正在使用的 JavaDB/Derby 版本?
我在 Java Swing 应用程序中使用 JavaDB (Derby) 作为嵌入式数据库。我想检测并打印我正在使用的 JavaDB 版本。我已将 derby.jar 包含在应用程序的 .jar 文件中。
如何检测并打印嵌入式 JavaDB 的版本?
I use JavaDB (Derby) as an embedded database in my Java Swing application. I would like to detect and print the version of JavaDB I'm using. I have included derby.jar
in my .jar-file for the application.
How can I detect and print the version of my embedded JavaDB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://download.oracle .com/javadb/10.6.1.0/javadoc/jdbc3/org/apache/derby/tools/sysinfo.html
也可以从命令行运行:
如果你不想要编译时依赖,你可以还可以从 JDBC DatabaseMetaData 获取版本信息:
http://download.oracle.com/javadb/10.6.1.0/javadoc/jdbc3/org/apache/derby/tools/sysinfo.html
Can also be run from the command line:
If you do not want the compile-time dependency, you can also get the version info from the JDBC DatabaseMetaData:
您还可以 直接使用SQL检测产品版本:
You can also detect the product version directly using SQL: