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