mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-08 12:14:47 +00:00
HHH-18314 don't use streams for LOB binding on Db2
Since: - we can use the JDBC LOB APIs, and - setNCharacterStream() is not implemented by the driver Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
785dac135a
commit
83643af8d0
@ -960,6 +960,11 @@ public boolean supportsLobValueChangePropagation() {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean useInputStreamToInsertBlob() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean doesReadCommittedCauseWritersToBlockReaders() {
|
public boolean doesReadCommittedCauseWritersToBlockReaders() {
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user