[jOOQ/jOOQ#6516] ORA-01704 when generating large CLOB inline values in
Oracle
This commit is contained in:
parent
2b57efb150
commit
0c57089a12
@ -4302,6 +4302,35 @@ public class DefaultBinding<T, U> implements Binding<T, U> {
|
||||
super.setNull0(ctx);
|
||||
}
|
||||
|
||||
@Override
|
||||
final void sqlInline0(BindingSQLContext<U> ctx, String value) throws SQLException {
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
super.sqlInline0(ctx, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
final void set0(BindingSetStatementContext<U> ctx, String value) throws SQLException {
|
||||
ctx.statement().setString(ctx.index(), value);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user