Here you can find the source of getString(ResultSet rs, String columnLabel)
public static String getString(ResultSet rs, String columnLabel) throws SQLException
//package com.java2s; //License from project: Apache License import java.sql.ResultSet; import java.sql.SQLException; public class Main { public static String getString(ResultSet rs, String columnLabel) throws SQLException { return rs.getString(columnLabel); }//from w ww.j a va2 s.c o m }