本文整理汇总了Java中javax.sql.rowset.BaseRowSet.BINARY_STREAM_PARAM属性的典型用法代码示例。如果您正苦于以下问题:Java BaseRowSet.BINARY_STREAM_PARAM属性的具体用法?Java BaseRowSet.BINARY_STREAM_PARAM怎么用?Java BaseRowSet.BINARY_STREAM_PARAM使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类javax.sql.rowset.BaseRowSet
的用法示例。
在下文中一共展示了BaseRowSet.BINARY_STREAM_PARAM属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setParameter
private void setParameter(PreparedStatement ps) throws SQLException {
Object[] params = getParams();
for (int i = 0; i < params.length; i++) {
if (params[i] instanceof Object[]) {
Object[] objs = (Object[]) params[i];
// character stream
if (objs.length == 2) {
ps.setCharacterStream(i + 1, (Reader) objs[0],
((Integer) objs[1]).intValue());
} else {
int type = ((Integer) objs[2]).intValue();
switch (type) {
case BaseRowSet.ASCII_STREAM_PARAM:
ps.setAsciiStream(i + 1, (InputStream) objs[0],
((Integer) objs[1]).intValue());
break;
case BaseRowSet.BINARY_STREAM_PARAM:
ps.setBinaryStream(i + 1, (InputStream) objs[0],
((Integer) objs[1]).intValue());
break;
case BaseRowSet.UNICODE_STREAM_PARAM:
ps.setUnicodeStream(i + 1, (InputStream) objs[0],
((Integer) objs[1]).intValue());
break;
}
}
} else {
ps.setObject(i + 1, params[i]);
}
}
}
示例2: createCopy
@Override
public CachedRowSet createCopy() throws SQLException {
WebRowSetImpl webRs = new WebRowSetImpl();
CachedRowSet copyCrset = super.createCopy();
copyCrset.beforeFirst();
webRs.populate(copyCrset);
webRs.setCommand(copyCrset.getCommand());
Object[] params = ((CachedRowSetImpl) copyCrset).getParams();
for (int i = 0; i < params.length; i++) {
if (params[i] instanceof Object[]) {
Object[] objs = (Object[]) params[i];
// character stream
if (objs.length == 2) {
webRs.setCharacterStream(i + 1, (Reader) objs[0],
((Integer) objs[1]).intValue());
} else {
int type = ((Integer) objs[2]).intValue();
switch (type) {
case BaseRowSet.ASCII_STREAM_PARAM:
webRs.setAsciiStream(i + 1, (InputStream) objs[0],
((Integer) objs[1]).intValue());
break;
case BaseRowSet.BINARY_STREAM_PARAM:
webRs.setBinaryStream(i + 1, (InputStream) objs[0],
((Integer) objs[1]).intValue());
break;
}
}
} else {
webRs.setObject(i + 1, params[i]);
}
}
if (copyCrset.getUrl() != null) {
webRs.setUrl(copyCrset.getUrl());
webRs.setUsername(copyCrset.getUsername());
webRs.setPassword(copyCrset.getPassword());
} else if (copyCrset.getDataSourceName() != null) {
webRs.setDataSourceName(copyCrset.getDataSourceName());
}
return webRs;
}