Is there a method in the JDBCResultSet interface that can get the number of columns returned from a query? Apologies if this question has been asked before... Tetsuo!
Tetsuo Suzuki
Greenhorn
Joined: Feb 21, 2002
Posts: 22
posted
0
Oops -> found the answer to my question. ResultSetMetaData interface provides a getColumnCount() method. Ironically enough I found the solution by googling and looking at how .NET data access works. Very similar to Java. Hm...