Method
sql
(BindingSQLContext<byte[]> ctx)
Source from the content-addressed store, hash-verified
| 99 | } |
| 100 | |
| 101 | @Override |
| 102 | public final void sql(BindingSQLContext<byte[]> ctx) throws SQLException { |
| 103 | if (ctx.render().paramType() == ParamType.INLINED) |
| 104 | ctx.render().visit(DSL.inline(ctx.convert(converter()).value(), SQLDataType.BLOB)); |
| 105 | else |
| 106 | ctx.render().sql(ctx.variable()); |
| 107 | } |
| 108 | |
| 109 | @Override |
| 110 | public final void register(BindingRegisterContext<byte[]> ctx) throws SQLException { |
Callers
nothing calls this directly
Tested by
no test coverage detected