How to get the number of columns in a ResultSet in Java
In Java it is possible to retrieve the number of columns of a ResultSet dinamically, thanks to the ResultSetMetaData class. Here's an example:
JAVA:
-
// Here you get the conn object. E.g.:
-
// Connection conn = DriverManager.getConnection(...);
-
-
int numCols = rsmd.getColumnCount();
The previous code retrieves and displays the number of columns of your_table.