Name

ResultSetInfo

Synopsis

This interface represents metadata about the support a given connection supports for receiving and generating ResultSet records. It is obtained by calling the Connection.getResultInfo() method.

public interface ResultSetInfo {
// Public Instance Methods
   public abstract boolean deletesAreDetected(
        int type) throws ResourceException;  
   public abstract boolean insertsAreDetected(
        int type) throws ResourceException;  
   public abstract boolean othersDeletesAreVisible(
        int type) throws ResourceException;  
   public abstract boolean othersInsertsAreVisible(
        int type) throws ResourceException;  
   public abstract boolean othersUpdatesAreVisible(
        int type) throws ResourceException;  
   public abstract boolean ownDeletesAreVisible(
        int type) throws ResourceException;  
   public abstract boolean ownInsertsAreVisible(
        int type) throws ResourceException;  
   public abstract boolean ownUpdatesAreVisible(
        int type) throws ResourceException;  
   public abstract boolean supportsResultSetType(
        int type) throws ResourceException;  
   public abstract boolean supportsResultTypeConcurrency(
        int type, 
        int concurrency) throws ResourceException;  
   public abstract boolean updatesAreDetected(
        int type) throws ResourceException;  
}

Returned By

javax.resource.cci.Connection.getResultSetInfo()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.