我刚从3.3.0.GA更新到Hibernate 3.6.5.Final,并且在XML映射属性上遇到了SQL公式调用的问题:
<property
name="endDate"
type="java.util.Date"
formula="TIMESTAMPADD(SECOND, (quantity*60*60), transactionDate)"
/>
我在* .xml.hbm中没有更改任何内容,也没有更改数据库设计。之前我的endDate计算得很好,我现在得到一个MySQLSyntaxErrorException
:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'this_.SECOND,(this_.quantity*60*60),this_.transactionDate) as formula0_0_ from t' at line 1
问题非常明显,因为this_.SECOND
应该是SECOND
。在我看来,Hibernate将TIMESTAMPADD
识别为公式但不将SECOND
识别为静态传递参数,并认为它必须是表中的列。我不确定如何告诉hibernate它应该按原样使用SECOND
。
我在我的方言上尝试了registerFunction
和registerKeyword
,但没有任何运气,因为这些似乎与HQL函数定义有关,而不是公式中使用的本机SQL。
有人能指出我正确的方向或告诉我Hibernate在这些版本之间有什么不同以及我如何解决它?
答案 0 :(得分:3)
我刚刚升级到Hibernate 4.1.2,同样的问题又开始了。 [SECOND]的解决方案不再有效,我必须在我自己的自定义方言中注册关键字。像:
public class ExtendedMySQL5InnoDBDialect extends MySQL5InnoDBDialect {
public ExtendedMySQL5InnoDBDialect() {
super();
//make sure to register it in lowercase as uppercase does not work (took me 4 hours to realize)
registerKeyword("second");
}
}
答案 1 :(得分:1)