previous
|
start
|
next
Result Set Meta Data
Result set meta data describes the properties of the result set
Use the
ResultSetMetaData
class to find out the column names in an unknown table
You can get the meta data object form the result set
ResultSetMetaData metaData = result.getMetaData();
previous
|
start
|
next