java中的ResultSet有没有办法通过列名来获取数据

2024-12-05 11:29:01
推荐回答(1个)
回答1:

ResultSet有提供重载的方法的啊

String getString(String columnLabel)
          throws SQLException
//Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.

需要的参数columnLabel就是数据库列的名字

类似的方法的很多