java - ORA-24816: Expanded non LONG bind data supplied after actual LONG or LOB column -


I'm getting the exception when updating the table in Hibernate

ORA-24816: Expanded Damage data supplied after long long long long or LOB column

I have also pulled out the SQL query, it looks like

  update table_name set columnname (LOB) = value , Colmun2 (with string 4000) = value where id = ?;  

unit class

  class testing {@LOB personal string error text; @ Column (length = 4000) private string text; }  

Please help me, what is wrong in this

thanks Ravi Kumar

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -