[
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1501?page=c...
]
Gail Badner commented on HHH-1501:
----------------------------------
This can be mapped more generically by annotating properties with @Lob.
Hibernate will use a "materialized_clob" type (which maps to JDBC CLOB) for the
following:
@Lob
String longString
Hibernate will use a "materialized_blob" type (which maps to JDBC BLOB) for the
following:
@Lob
byte[] longByteArray
I believe this should work for 3.5.x and 3.6.x.
Or maybe I'm missing something?
Please let us know if this works for Derby.
Thanks,
Gail
insert long string (more than 32700) fails on derby
---------------------------------------------------
Key: HHH-1501
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-1501
Project: Hibernate Core
Issue Type: Bug
Components: core
Affects Versions: 3.5.0-Beta-2
Environment: Derby 10
Reporter: Sergey Vladimirov
Priority: Trivial
http://issues.apache.org/jira/browse/DERBY-102
VARCHAR maximum length 32 672
LONG VARCHAR maximum length 32 700
CLOB maximum length 2 147 483 647
BLOB maximum length 2 147 483 647
this issue can be reproduced by org.hibernate.test.lob.TextTest (in 3.5 beta1,2) with
change org.hibernate.test.lob.LongStringTest.LONG_STRING_SIZE > 32700
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira