ORA-00932: inconsistent datatypes: expected NUMBER got BINARY
I was getting the following error: ORA-00932: inconsistent datatypes: expected NUMBER got BINARY on line: <property name="customer" column="CustomerId" /> the fix for above error was to use...
View Articleorg.hibernate.PropertyAccessException: exception setting property value with...
The error org.hibernate.PropertyAccessException: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of XYZ.setStatus(). Cause Using...
View ArticleHow To Debug Hibernate SQL Queries With Parameters
I bet everyone knows how to enable SQL logging for Hibernate. If you add this parametr to Hibernate configuration: <property name="hibernate.show_sql">true</property> you will see queries...
View ArticleSecond Level Cache For SQL Queries Under Hibernate
Second level cache in Hibernate allows to greatly speed-up your application by minimizing number of SQL queries issued and serving some results from in-memory cache (with optional disk storage or...
View ArticleWebsphere Extreme Scale + Hibernate = ?
Recently I was asked to integrate WXS (Websphere Extreme Scale, commercial cache implementation from IBM) into existing WPS (Websphere Process Server)-based project to implement read-only...
View ArticleCustom CacheProvider for Hibernate based on Websphere DistributedMap
Hibernate is a library that maps database tables to Java objects. Is performance problems arise it’s very easy to add database caching for application using Hibernate (just few options in config file)....
View ArticleSQL Error: 17006, SQLState: null Invalid column name in Hibernate
Recently I’ve got the following error during SQL named query execution: SQL Error: 17006, SQLState: null Invalid column name In order to track the problem down I enabled SQL logging and collected SQL...
View Article