MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / sql

Method sql

jOOQ/src/main/java/org/jooq/impl/BlobBinding.java:101–107  ·  view source on GitHub ↗
(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

Calls 9

inlineMethod · 0.95
converterMethod · 0.95
paramTypeMethod · 0.65
renderMethod · 0.65
visitMethod · 0.65
valueMethod · 0.65
convertMethod · 0.65
sqlMethod · 0.65
variableMethod · 0.65

Tested by

no test coverage detected