本文整理了Java中org.skife.jdbi.v2.Query.getContext
方法的一些代码示例,展示了Query.getContext
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.getContext
方法的具体详情如下:
包路径:org.skife.jdbi.v2.Query
类名称:Query
方法名:getContext
暂无
代码示例来源:origin: org.kill-bill.commons/killbill-jdbi
@Override
public List<ResultType> munge(ResultSet rs) throws SQLException
{
List<ResultType> result_list = new ArrayList<ResultType>();
int index = 0;
while (rs.next() && index < maxRows) {
result_list.add(mapper.map(index++, rs, getContext()));
}
return result_list;
}
});
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
public Void munge(ResultSet rs) throws SQLException
{
while (rs.next()) {
acc.set(folder.fold(acc.get(), rs, getContext()));
}
return null;
}
});
代码示例来源:origin: org.kill-bill.commons/killbill-jdbi
@Override
public ResultIterator<ResultType> munge(Statement stmt) throws SQLException
{
return new ResultSetResultIterator<ResultType>(mapper,
Query.this,
stmt,
getContext());
}
});
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
public List<ResultType> munge(ResultSet rs) throws SQLException
{
List<ResultType> result_list = new ArrayList<ResultType>();
int index = 0;
while (rs.next() && index < maxRows) {
result_list.add(mapper.map(index++, rs, getContext()));
}
return result_list;
}
});
代码示例来源:origin: org.kill-bill.commons/killbill-jdbi
@Override
public Void munge(ResultSet rs) throws SQLException
{
while (rs.next()) {
acc.set(folder.fold(acc.get(), rs, getContext()));
}
return null;
}
});
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
public ResultIterator<ResultType> munge(Statement stmt) throws SQLException
{
return new ResultSetResultIterator<ResultType>(mapper,
Query.this,
stmt,
getContext());
}
});
代码示例来源:origin: org.kill-bill.commons/killbill-jdbi
@Override
protected AccumulatorType munge(ResultSet rs) throws SQLException
{
final FoldController ctl = new FoldController(rs);
while (!ctl.isAborted() && rs.next()) {
ResultType row_value = mapper.map(idx++, rs, getContext());
this.ac = folder.fold(ac, row_value, ctl, getContext());
}
return ac;
}
});
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
@Override
protected AccumulatorType munge(ResultSet rs) throws SQLException
{
final FoldController ctl = new FoldController(rs);
while (!ctl.isAborted() && rs.next()) {
ResultType row_value = mapper.map(idx++, rs, getContext());
this.ac = folder.fold(ac, row_value, ctl, getContext());
}
return ac;
}
});
代码示例来源:origin: org.kill-bill.commons/killbill-jdbi
@Override
public Object invoke(HandleDing h, Object target, Object[] args, MethodProxy mp)
{
Query q = h.getHandle().createQuery(sql);
populateSqlObjectData((ConcreteStatementContext) q.getContext());
applyCustomizers(q, args);
applyBinders(q, args);
return magic.map(method, q, h);
}
}
代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics
public Object invoke(HandleDing h, Object target, Object[] args, MethodProxy mp)
{
Query q = h.getHandle().createQuery(sql);
populateSqlObjectData((ConcreteStatementContext) q.getContext());
applyCustomizers(q, args);
applyBinders(q, args);
return magic.map(method, q, h);
}
}
内容来源于网络,如有侵权,请联系作者删除!