Package step.repository.alm.otaclient
Interface IColumnInfo
- 
- All Superinterfaces:
- com4j.Com4jObject
 - All Known Subinterfaces:
- IRecordset
 
 public interface IColumnInfo extends com4j.Com4jObjectRepresents column information for a Recordset.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intcolCount()Gets the number of columns in the current Recordset object.intcolIndex(java.lang.String name)Gets the index (zero-based) of a Recordset column specified by column name.java.lang.StringcolName(int index)The name of the Recordset column specified by Index (zero-based).intcolSize(int index)The physical size as defined in the database of the fields in the column specified by Index (zero-based).intcolType(int index)The data type of column.
 
- 
- 
- 
Method Detail- 
colCountint colCount() Gets the number of columns in the current Recordset object. Getter method for the COM property "ColCount" - Returns:
- Returns a value of type int
 
 - 
colSizeint colSize(int index) The physical size as defined in the database of the fields in the column specified by Index (zero-based). Getter method for the COM property "ColSize" - Parameters:
- index- Mandatory int parameter.
- Returns:
- Returns a value of type int
 
 - 
colTypeint colType(int index) The data type of column. Getter method for the COM property "ColType" - Parameters:
- index- Mandatory int parameter.
- Returns:
- Returns a value of type int
 
 - 
colNamejava.lang.String colName(int index) The name of the Recordset column specified by Index (zero-based). Getter method for the COM property "ColName" - Parameters:
- index- Mandatory int parameter.
- Returns:
- Returns a value of type java.lang.String
 
 - 
colIndexint colIndex(java.lang.String name) Gets the index (zero-based) of a Recordset column specified by column name. Getter method for the COM property "ColIndex" - Parameters:
- name- Mandatory java.lang.String parameter.
- Returns:
- Returns a value of type int
 
 
- 
 
-