Couldn't get at the OracleSpatial Connection object from the PreparedStatement
Couldn't get at the OracleSpatial Connection object from the PreparedStatement i am using hibernate spatial 4.3.2 along with hibernate 4.3.11 and my db is oracle 12c. I use hikariCP for connection pool. when I use hikacriCP I get an error that seems that cause is hibernate spatial can not access to the wrapped connection of hikari connection instance, this is my exception: problem is hibernate throws error when saving an entity that contains geometry field. Couldn't get at the OracleSpatial Connection object from the PreparedStatement when I remove hikari, everything is fine! here is my entity and xml mapping file. <hibernate-mapping> <class name="MyPoint" table="MyPoint" > <id name="id" type="long" > <column name="ID" /> <generator class="sequence" > <param name="sequence">SEQ_MyPoint</param> </...