Example usage for java.sql RowIdLifetime ROWID_UNSUPPORTED

List of usage examples for java.sql RowIdLifetime ROWID_UNSUPPORTED

Introduction

In this page you can find the example usage for java.sql RowIdLifetime ROWID_UNSUPPORTED.

Prototype

RowIdLifetime ROWID_UNSUPPORTED

To view the source code for java.sql RowIdLifetime ROWID_UNSUPPORTED.

Click Source Link

Document

Indicates that this data source does not support the ROWID type.

Usage

From source file:com.alibaba.wasp.jdbc.result.JdbcDatabaseMetaData.java

/**
 * Get the lifetime of a rowid.
 * 
 * @return ROWID_UNSUPPORTED
 */
public RowIdLifetime getRowIdLifetime() {
    return RowIdLifetime.ROWID_UNSUPPORTED;
}

From source file:net.starschema.clouddb.jdbc.BQDatabaseMetadata.java

/**
 * <p>/*w  w w. j  a  va 2 s.  co m*/
 * <h1>Implementation Details:</h1><br>
 * Returns RowIdLifetime.ROWID_UNSUPPORTED
 * </p>
 */
@Override
public RowIdLifetime getRowIdLifetime() throws SQLException {
    return RowIdLifetime.ROWID_UNSUPPORTED;
}

From source file:org.apache.phoenix.jdbc.PhoenixDatabaseMetaData.java

@Override
public RowIdLifetime getRowIdLifetime() throws SQLException {
    return RowIdLifetime.ROWID_UNSUPPORTED;
}