Reputation: 3760
There is no sql server 2012 dialect inside org.hibernate.dialect for SQL Server 2012. I wanted to use 2012 dialect since there was better pagination support in SQL Server 2012 than in 2008? How can I achieve this ?
Upvotes: 1
Views: 5334
Reputation: 211
If you pull in Hibernate 4.3.0.Final you can use org.hibernate.dialect.SQLServer2012Dialect
Upvotes: 4