如何在java中循环访问结果集中的行的值?
我说的是结果集:http://docs.oracle.com/javase/1.4.2/docs/api/java/sql/ResultSet.html
我想做的是这个...
for row in rows
for col in row
//col is the name of the column, row[col] is the value.
我比JSP更精通PHP,fyi。这将在PHP中完成,如下所示:
foreach($rs as $row)
foreach($row as $col => $val)
//val is the cell value, and column is the column name
编辑:我正在寻找一个通用的解决方案。请注意 col 是一个变量,而不是一个文字。