Returns the given column's table schema for the specified result set meta data object.
Syntax
getSchemaName( resultsetmetadata , index )
resultsetmetadata.getSchemaName( index )
Parameters
resultsetmetadata
|
the result set meta data object to use.
|
index
|
the index of the column.
|
Returns
string
|
the column's table schema.
|
Example
scheme = rsmt.getSchemaName( 1 )
|