How to see result from mysql query in netbeans
问题 When I run the netbeans debugger on my project I can't see the resulting tables from my SQL queries. How can I see those results in the same way as I see other variables? Here is an example query: <sql:query var="query" dataSource="myDB"> SELECT * FROM data </sql:query> <c:set var="queryInfo" value="${query.rows[0]}"/> How can I see the queryInfo/query table using the debygger? When I try to show the result as a html table I don't get any error messages and I only get an empty table. As such