Name

RowSetMetaData

Synopsis

Extends java.sql.ResultSetMetaData to support the functionality of RowSet objects.

                  Passed To
public interface RowSetMetaData extends java.sql.ResultSetMetaData {
// Public Instance Methods
   public abstract void setAutoIncrement(int columnIndex, 
        boolean property) throws java.sql.SQLException;  
   public abstract void setCaseSensitive(int columnIndex, 
        boolean property) throws java.sql.SQLException;  
   public abstract void setCatalogName(int columnIndex, 
        String catalogName) throws java.sql.SQLException;  
   public abstract void setColumnCount(
        int columnCount) throws java.sql.SQLException;  
   public abstract void setColumnDisplaySize(int columnIndex, 
        int size) throws java.sql.SQLException;  
   public abstract void setColumnLabel(int columnIndex, 
        String label) throws java.sql.SQLException;  
   public abstract void setColumnName(int columnIndex, 
        String columnName) throws java.sql.SQLException;  
   public abstract void setColumnType(int columnIndex, 
        int SQLType) throws java.sql.SQLException;  
   public abstract void setColumnTypeName(int columnIndex, 
        String typeName) throws java.sql.SQLException;  
   public abstract void setCurrency(int columnIndex, 
        boolean property) throws java.sql.SQLException;  
   public abstract void setNullable(int columnIndex, 
        int property) throws java.sql.SQLException;  
   public abstract void setPrecision(int columnIndex, 
        int precision) throws java.sql.SQLException; public abstract void ...

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.