Sorry for the newbie question,
I am running a query from my java application.
resultSet = preparedStatement.executeQuery(query);
So resultSet will have all the rows found from the query. Is there a way to get the number of coulmns in each row and also the column name?
Thanks