Here you can find the source of getDate(ResultSet rs, String columnLabel)
public static Date getDate(ResultSet rs, String columnLabel) throws SQLException
//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*/ }