h2 升级到 1.2.147 时出现问题 - getNString 异常
我最近升级到 h2 1.2.147。我的代码抛出异常 - 引起:java.lang.AbstractMethodError: org.h2.jdbc.JdbcResultSet.getNString(Ljava/lang/String;)Ljava/lang/String;
有什么想法吗?
谢谢, 阿努普里特
I have recently upgraded to h2 1.2.147. My code throws an exception -
Caused by: java.lang.AbstractMethodError: org.h2.jdbc.JdbcResultSet.getNString(Ljava/lang/String;)Ljava/lang/String;
Any idea?
Thanks,
Anuprit
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您的 .jar 文件未编译为支持 Java6(即 JDBC4)
源代码中有一个预处理器指令,仅当您使用 Java6 编译该方法时才编译该方法
尝试使用 Java6 重新构建它,然后该方法应该在那里
Sounds like your .jar file was not compiled with support for Java6 (i.e. JDBC4)
There is a pre-processor directive in the source code that only compiles that method when you compile it with Java6
Try re-building it with Java6, then the method should be there