Returns the column's type for the given column index in the specified meta data result set object.
Syntax
getColumnType( resultsetmetadata , columnindex )
resultsetmetadata.getColumnType( columnindex )
Parameters
resultsetmetadata
|
the result set meta data object to use.
|
columnindex
|
the index of the column.
|
Returns
integer
|
the column's type.
|
Example
typ = rsmd.getColumnType( 1 )
|