Java SQL Date Get getDate(ResultSet rs, String columnLabel)

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

Description

get Date

License

Apache License

Declaration

public static Date getDate(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;

import java.util.Date;

public class Main {
    public static Date getDate(ResultSet rs, String columnLabel) throws SQLException {
        return rs.getDate(columnLabel);
    }/*from  ww w.  java  2 s  . co m*/
}

Related

  1. getDate(ResultSet rs, int colNum)
  2. getDate(ResultSet rs, int columnIndex)
  3. getDate(ResultSet rs, int index)
  4. getDate(ResultSet rs, String colName)
  5. getDate(ResultSet rs, String column)
  6. getDate(ResultSet rs, String columnName)
  7. getDate(String aDate, int dif)
  8. getDate(String date)
  9. getDate(String date)