类java.sql.NClob源码实例Demo

下面列出了怎么用java.sql.NClob的API类实例代码及写法,或者点击链接到github查看源代码。

@Override
public NClob createNClob() throws SQLException {
    checkOpen();
    try {
        return connection.createNClob();
    } catch (final SQLException e) {
        handleException(e);
        return null;
    }
}
 
源代码2 项目: Komondor   文件: JDBC4CallableStatementWrapper.java
/**
 * @see java.sql.CallableStatement#getNClob(java.lang.String)
 */
public NClob getNClob(String parameterName) throws SQLException {
    try {
        if (this.wrappedStmt != null) {
            return ((CallableStatement) this.wrappedStmt).getNClob(parameterName);
        } else {
            throw SQLError.createSQLException("No operations allowed after statement closed", SQLError.SQL_STATE_GENERAL_ERROR, this.exceptionInterceptor);
        }
    } catch (SQLException sqlEx) {
        checkAndFireConnectionError(sqlEx);
    }

    return null;
}
 
源代码3 项目: doma   文件: NClobWrapper.java
public NClobWrapper(NClob value) {
  super(NClob.class, value);
}
 
源代码4 项目: jmeter-plugins   文件: TestConnection.java
@Override
public NClob getNClob(int columnIndex) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码5 项目: ontopia   文件: SpyResultSet.java
@Override
public NClob getNClob(String s) throws SQLException {
  return rs.getNClob(s);
}
 
源代码6 项目: gemfirexd-oss   文件: EmbedCallableStatement.java
public NClob getNClob(int i) throws SQLException {
  throw new AssertionError("should be overridden in JDBC 4.0");
}
 
源代码7 项目: tddl   文件: ResultSetAutoCloseConnection.java
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
    rs.updateNClob(columnIndex, nClob);
}
 
源代码8 项目: Oceanus   文件: RWPreparedStatementWrapper.java
@Override
public void setNClob(int arg0, NClob arg1) throws SQLException {
	stmt.setNClob(arg0, arg1);

}
 
源代码9 项目: flair-engine   文件: MockResultSet.java
@Override
public NClob getNClob(int columnIndex) throws SQLException {
    return null;
}
 
源代码10 项目: ignite   文件: JdbcPreparedStatement.java
/** {@inheritDoc} */
@Override public void setNClob(int paramIdx, NClob val) throws SQLException {
    ensureNotClosed();

    throw new SQLFeatureNotSupportedException("SQL-specific types are not supported.");
}
 
源代码11 项目: doma   文件: MockResultSet.java
@Override
public void updateNClob(String columnLabel, NClob clob) throws SQLException {
  AssertionUtil.notYetImplemented();
}
 
源代码12 项目: phoenix   文件: PhoenixResultSet.java
@Override
public NClob getNClob(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}
 
源代码13 项目: jdk8u-jdk   文件: StubJdbcRowSetImpl.java
@Override
public NClob getNClob(int columnIndex) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码14 项目: jactiverecord   文件: SingletonConnection.java
@Override
public NClob createNClob() throws SQLException {
  return c.createNClob();
}
 
源代码15 项目: gemfirexd-oss   文件: VTITemplate.java
public void updateNClob(String columnName, NClob nClob) throws SQLException {
  throw Util.notImplemented();
}
 
源代码16 项目: spliceengine   文件: CallableStatement40.java
public NClob getNClob(int i) throws SQLException {
    throw SQLExceptionFactory.notImplemented ("setNClob (int)");
}
 
源代码17 项目: baymax   文件: ExplainResultSet.java
@Override
public NClob getNClob(int columnIndex) throws SQLException {
	return null;
}
 
源代码18 项目: dremio-oss   文件: NonClosableConnection.java
public NClob createNClob() throws SQLException {
  return delegate.createNClob();
}
 
源代码19 项目: gemfirexd-oss   文件: ClientCallableStatement.java
/**
 * {@inheritDoc}
 */
@Override
public NClob getNClob(String parameterName) throws SQLException {
  return getNClob(getParameterIndex(parameterName));
}
 
源代码20 项目: hottub   文件: StubJdbcRowSetImpl.java
@Override
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码21 项目: dragonwell8_jdk   文件: StubWebRowSetImpl.java
@Override
public NClob getNClob(int columnIndex) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码22 项目: lams   文件: NClobTypeDescriptor.java
public String toString(NClob value) {
	return DataHelper.extractString( value );
}
 
源代码23 项目: phoenix   文件: PhoenixResultSet.java
@Override
public NClob getNClob(String columnLabel) throws SQLException {
    throw new SQLFeatureNotSupportedException();
}
 
源代码24 项目: openjdk-jdk8u   文件: StubFilteredRowSetImpl.java
@Override
public NClob getNClob(String columnLabel) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码25 项目: gemfirexd-oss   文件: EmbedResultSet40.java
public void updateNClob(int columnIndex, NClob nClob) throws SQLException {
    throw Util.notImplemented();
}
 
源代码26 项目: hottub   文件: StubBaseRowSet.java
@Override
public NClob getNClob(String columnLabel) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码27 项目: hottub   文件: StubSyncResolver.java
@Override
public void updateNClob(String columnLabel, NClob nClob) throws SQLException {
    throw new UnsupportedOperationException("Not supported yet.");
}
 
源代码28 项目: tddl   文件: TConnectionWrapper.java
public NClob createNClob() throws SQLException {
    return this.targetConnection.createNClob();
}
 
@Override
public final void updateNClob(final int columnIndex, final NClob nClob) throws SQLException {
    throw new SQLFeatureNotSupportedException("updateXXX");
}
 
@Override
public final void updateNClob(final String columnLabel, final NClob nClob) throws SQLException {
    throw new SQLFeatureNotSupportedException("updateXXX");
}