Java SQL ResultSet String Read getString(ResultSet rs, String columnLabel)

Here you can find the source of getString(ResultSet rs, String columnLabel)

Description

get String

License

Apache License

Declaration

public static String getString(ResultSet rs, String columnLabel) throws SQLException 

Method Source Code

//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
}

Related

  1. getString(ResultSet resultSet, String columnName)
  2. getString(ResultSet resultSet, String columnName)
  3. getString(ResultSet rs, int index, boolean trim)
  4. getString(ResultSet rs, int ix, int sql_type)
  5. getString(ResultSet rs, String column)
  6. getString(ResultSet rs, String columnName)
  7. getString(ResultSet rs, String name)
  8. getString(ResultSet rs, String name, String ifnull)
  9. getStringChunks(ResultSet rs, int colIndex, StringBuffer buf)