I have created a Database Application using Netbeans, GlassFish and JavaDB. Now my controller Servlet code executes some dynamic SQL queries and get back a Result Set (or I can ahange toString). Now, how can I show the returned Result Set in a tabular format ( I have no idea about structure of result set). Can anybody help me about this ?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
You can use So, this mapping should do:
You can display it in JSP as follows:
|
|||||||||
|
|
Use the resultset metadata to know the number of columns returned by the query, the type of these columns, etc. See the javadoc, which also has an example. |
|||
|
|
@. I did not see your comment reply. – BalusC Feb 8 '12 at 21:43