Steve Ebersole (
https://hibernate.atlassian.net/secure/ViewProfile.jspa?accountId=557058%...
) *commented* on HHH-16321 (
https://hibernate.atlassian.net/browse/HHH-16321?atlOrigin=eyJpIjoiMDRjZT...
)
Re: Hibernate maps NCLOB to ntext on Sybase (
https://hibernate.atlassian.net/browse/HHH-16321?atlOrigin=eyJpIjoiMDRjZT...
)
If we do end up adding support for this, it probably can be handled by splitting
org.hibernate.engine.jdbc.LobCreator up into separate parts for BLOB , CLOB and NCLOB.
That way we can test all three methods on the driver and return appropriate creators for
each.
interface BlobCreator {
Blob wrap(Blob blob);
Blob createBlob( byte [] bytes);
...
}
interface ClobCreator {
Clob wrap(Clob clob);
Clob createClob( String string);
...
}
interface NClobCreator {
NClob wrap(NClob nclob);
NClob createNClob( String string);
...
}
(
https://hibernate.atlassian.net/browse/HHH-16321#add-comment?atlOrigin=ey...
) Add Comment (
https://hibernate.atlassian.net/browse/HHH-16321#add-comment?atlOrigin=ey...
)
Get Jira notifications on your phone! Download the Jira Cloud app for Android (
https://play.google.com/store/apps/details?id=com.atlassian.android.jira....
) or iOS (
https://itunes.apple.com/app/apple-store/id1006972087?pt=696495&ct=Em...
) This message was sent by Atlassian Jira (v1001.0.0-SNAPSHOT#100223- sha1:cdc0af3 )