Quote:
org.springframework.jdbc.UncategorizedSQLException: Hibernate operation: Could not execute JDBC batch update: encountered SQLException [ORA-03115: unsupported network datatype or representation
]; nested exception is java.sql.BatchUpdateException: ORA-03115: unsupported network datatype or representation
I had a similar issue with a java.util.Date object field mapped to an Oracle TIMESTAMP column. My mapping file specified a "timestamp" type, but I was not getting millisecond precision when fetching my object. Upgrading to ojdbc14.jar solved this problem for me.
http://www.oracle.com/technology/softwa ... index.html
p.