org.jooq.Query.getBindValues()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中org.jooq.Query.getBindValues方法的一些代码示例,展示了Query.getBindValues的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getBindValues方法的具体详情如下:
包路径:org.jooq.Query
类名称:Query
方法名:getBindValues

Query.getBindValues介绍

[英]Retrieve the bind values that will be bound by this Query. This List cannot be modified. To modify bind values, use #getParams() instead.

Unlike #getParams(), which returns also inlined parameters, this returns only actual bind values that will render an actual bind value as a question mark "?"
[中]检索将被此查询绑定的绑定值。无法修改此List。要修改绑定值,请改用#getParams()。
与#getParams()不同,它还返回内联参数,它只返回实际绑定值,将实际绑定值呈现为问号"?"

代码示例

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

@Override
public final List<Object> getBindValues() {
  return delegate.getBindValues();
}

代码示例来源:origin: org.jooq/jooq

@Override
public final List<Object> getBindValues() {
  return delegate.getBindValues();
}

代码示例来源:origin: stackoverflow.com

Query query =
create.select(DSL.field("table_name"))
   .from("tables t")
   .where("t.table_schema LIKE '" + schemaName + "'")
   .limit(DSL.inline(10))
   .offset(DSL.inline(2));

String sql = query.getSQL();
List<Object> bindValues = query.getBindValues();

代码示例来源:origin: stackoverflow.com

Query query = ctx.insertInto(...).values(...);
ctx.execute(
  query.getSQL().replace("insert into", "insert /*+APPEND*/ into"), 
  query.getBindValues().toArray()
);

代码示例来源:origin: org.jooq/jooq

batch.bind(query.getBindValues().toArray());

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

batch.bind(query.getBindValues().toArray());

相关文章