java.sql.ResultSet.getNClob()方法的使用及代码示例

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

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

ResultSet.getNClob介绍

[英]Returns an NClob corresponding to the value at the 1-based columnIndex.
[中]返回与基于1的columnIndex处的值相对应的NClob。

代码示例

代码示例来源:origin: querydsl/querydsl

@Override
public NClob getNClob(String columnLabel) throws SQLException {
  return rs.getNClob(columnLabel);
}

代码示例来源:origin: querydsl/querydsl

@Override
public NClob getNClob(int columnIndex) throws SQLException {
  return rs.getNClob(columnIndex);
}

代码示例来源:origin: alibaba/druid

@Override
public NClob getNClob(int columnIndex) throws SQLException {
  try {
    return rs.getNClob(columnIndex);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: alibaba/druid

@Override
public NClob getNClob(String columnLabel) throws SQLException {
  try {
    return rs.getNClob(columnLabel);
  } catch (Throwable t) {
    throw checkException(t);
  }
}

代码示例来源:origin: hibernate/hibernate-orm

@Override
protected X doExtract(ResultSet rs, String name, WrapperOptions options) throws SQLException {
  return javaTypeDescriptor.wrap( rs.getNClob( name ), options );
}

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.getNClob("id");
  }
});

代码示例来源:origin: apache/ignite

@Override public void run() throws Exception {
    rs.getNClob(1);
  }
});

代码示例来源:origin: speedment/speedment

public static NClob getNClob(final ResultSet resultSet, final String columnName) throws SQLException {
  return getNullableFrom(resultSet, rs -> rs.getNClob(columnName));
}

代码示例来源:origin: speedment/speedment

public static NClob getNClob(final ResultSet resultSet, final int ordinalPosition) throws SQLException {
  return getNullableFrom(resultSet, rs -> rs.getNClob(ordinalPosition));
}

代码示例来源:origin: codingapi/tx-lcn

@Override
public NClob getNClob(String columnLabel) throws SQLException {
 SQLException e = null;
 try {
  NClob value = delegate.getNClob(columnLabel);
  eventListener.onAfterResultSetGet(resultSetInformation, columnLabel, value, null);
  return value;
 } catch (SQLException sqle) {
  e = sqle;
  eventListener.onAfterResultSetGet(resultSetInformation, columnLabel, null, e);
  throw e;
 }
}

代码示例来源:origin: codingapi/tx-lcn

@Override
public NClob getNClob(int columnIndex) throws SQLException {
 SQLException e = null;
 try {
  NClob value = delegate.getNClob(columnIndex);
  eventListener.onAfterResultSetGet(resultSetInformation, columnIndex, value, null);
  return value;
 } catch (SQLException sqle) {
  e = sqle;
  eventListener.onAfterResultSetGet(resultSetInformation, columnIndex, null, e);
  throw e;
 }
}

代码示例来源:origin: hibernate/hibernate-orm

@Override
protected X doExtract(ResultSet rs, String name, WrapperOptions options) throws SQLException {
  Clob rsClob;
  if ( HANAClobTypeDescriptor.this.useUnicodeStringTypes ) {
    rsClob = rs.getNClob( name );
  }
  else {
    rsClob = rs.getClob( name );
  }
  if ( rsClob == null || rsClob.length() < HANAClobTypeDescriptor.this.maxLobPrefetchSize ) {
    return javaTypeDescriptor.wrap( rsClob, options );
  }
  Clob clob = new MaterializedNClob( DataHelper.extractString( rsClob ) );
  return javaTypeDescriptor.wrap( clob, options );
}

代码示例来源:origin: jfinal/jfinal

value = ModelBuilder.me.handleClob(rs.getClob(i));
} else if (types[i] == Types.NCLOB) {
  value = ModelBuilder.me.handleClob(rs.getNClob(i));
} else if (types[i] == Types.BLOB) {
  value = ModelBuilder.me.handleBlob(rs.getBlob(i));

代码示例来源:origin: jfinal/jfinal

value = handleClob(rs.getClob(i));
} else if (types[i] == Types.NCLOB) {
  value = handleClob(rs.getNClob(i));
} else if (types[i] == Types.BLOB) {
  value = handleBlob(rs.getBlob(i));

代码示例来源:origin: jfinal/jfinal

private List<Record> buildRecord(ResultSet rs, int pageSize) throws SQLException {
  List<Record> result = new ArrayList<Record>();
  ResultSetMetaData rsmd = rs.getMetaData();
  int columnCount = rsmd.getColumnCount();
  String[] labelNames = new String[columnCount + 1];
  int[] types = new int[columnCount + 1];
  buildLabelNamesAndTypes(rsmd, labelNames, types);
  for (int k=0; k<pageSize && rs.next(); k++) {
    Record record = new Record();
    Map<String, Object> columns = record.getColumns();
    for (int i=1; i<=columnCount; i++) {
      Object value;
      if (types[i] < Types.BLOB) {
        value = rs.getObject(i);
      } else if (types[i] == Types.CLOB) {
        value = ModelBuilder.me.handleClob(rs.getClob(i));
      } else if (types[i] == Types.NCLOB) {
        value = ModelBuilder.me.handleClob(rs.getNClob(i));
      } else if (types[i] == Types.BLOB) {
        value = ModelBuilder.me.handleBlob(rs.getBlob(i));
      } else {
        value = rs.getObject(i);
      }
      columns.put(labelNames[i], value);
    }
    result.add(record);
  }
  return result;
}

代码示例来源:origin: jfinal/jfinal

value = ModelBuilder.me.handleClob(rs.getClob(i));
} else if (types[i] == Types.NCLOB) {
  value = ModelBuilder.me.handleClob(rs.getNClob(i));
} else if (types[i] == Types.BLOB) {
  value = ModelBuilder.me.handleBlob(rs.getBlob(i));

代码示例来源:origin: alibaba/druid

@Override
public NClob resultSet_getNClob(ResultSetProxy resultSet, int columnIndex) throws SQLException {
  if (this.pos < filterSize) {
    return nextFilter().resultSet_getNClob(this, resultSet, columnIndex);
  }
  NClob nclob = resultSet.getResultSetRaw().getNClob(columnIndex);
  return wrap(resultSet.getStatementProxy().getConnectionProxy(), nclob);
}

代码示例来源:origin: alibaba/druid

@Override
public NClob resultSet_getNClob(ResultSetProxy resultSet, String columnLabel) throws SQLException {
  if (this.pos < filterSize) {
    return nextFilter().resultSet_getNClob(this, resultSet, columnLabel);
  }
  NClob nclob = resultSet.getResultSetRaw()
      .getNClob(columnLabel);
  return wrap(resultSet.getStatementProxy().getConnectionProxy(), nclob);
}

代码示例来源:origin: hibernate/hibernate-orm

@Override
protected X doExtract(ResultSet rs, String name, WrapperOptions options) throws SQLException {
  NClob rsNClob = rs.getNClob( name );
  if ( rsNClob == null || rsNClob.length() < HANANClobTypeDescriptor.this.maxLobPrefetchSize ) {
    return javaTypeDescriptor.wrap( rsNClob, options );
  }
  NClob nClob = new MaterializedNClob( DataHelper.extractString( rsNClob ) );
  return javaTypeDescriptor.wrap( nClob, options );
}

代码示例来源:origin: org.apache.logging.log4j/log4j-core

resultSet.getString("message"));
assertEquals("The exception column is not correct (1).", stackTrace,
    IOUtils.readStringAndClose(resultSet.getNClob("exception").getCharacterStream(), -1));

相关文章

微信公众号

最新文章

更多

ResultSet类方法