ResultSetMetaData interface comes with methods to know the metadata of a table like number of columns, name of each column etc. Following example prints the first column name and all the column names of table Employee. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 […]
↧