Hibernate version: 3
Name and version of the database you are using:Oracle Spatial 9.2
Hi,
I have a problem with using the Oracle Spatial function
Code:
sdo_cs.transform
to transform a special column of a table to another SpatialReferenceSystem.
To get data in a special SpatialReferenceSystem I use this:
Code:
List results = session.createCriteria(SpatialObject.class)
.setProjection( new CSTransformProjection("column", targetCS) )
.list();
But it also has to be possible to write data in a different SpatialReferenceSystem than the default SpatialReferenceSystem of the database. So I want to use the
Code:
sdo_cs.transform
function to transform data which will be written on the database.
Any solutions?
Thanks,
Raffa