Hi Isomorphic,
I declared field like this:
	When text field is declared as "length>4000", a CLOB is automatically used. That is clear.
When I try to save String value > 4000, I get Oracle DB error:
	So is it possible that you change logic about saving CLOB data to be like:
	INHO that would solve all possible problems with a CLOB data while inserting in every DB.
Best regards
Pavo
					I declared field like this:
Code:
	
	<field name="BIGSTRING" length="100000" type="text" escapeHTML="true" />
When I try to save String value > 4000, I get Oracle DB error:
Code:
	
	ORA-01704: string literal too long
Code:
	
	insert into <table> (clob_column)
  values
  (
      to_clob(' <=4000 symbols ')
    ||to_clob(' <=4000 symbols ')
    ||to_clob(' <=4000 symbols ')
    ...
    ||to_clob(' <=4000 symbols ')
  );
Best regards
Pavo
Comment