Returns the given column's table name for the specified result set meta data object.
Syntax
getTableName( resultsetmetadata , index )
resultsetmetadata.getTableName( 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
table = rsmt.getTableName( 1 )
|