[jOOQ/jOOQ#6516] ORA-01704 when generating large CLOB inline values in

Oracle
This commit is contained in:
Lukas Eder 2022-09-26 11:13:35 +02:00
parent 2b57efb150
commit 0c57089a12

View File

@ -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);