When I try to query objects, I end up with following error:
ORA-01461: can bind a LONG value only for insert into a LONG column
Could someo
I encountered this error message when trying to insert String into an XMLTYPE column.
Specifically using Java's PreparedStatement like this:
ps.setString('XML', document);
where XML here is defined as XMLTYPE.
XML