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