Here you can find the source of sqlDate(Timestamp t)
public static final java.sql.Date sqlDate(Timestamp t)
//package com.java2s; //License from project: Open Source License import java.sql.Timestamp; public class Main { public static final java.sql.Date sqlDate(Timestamp t) { return new java.sql.Date(t.getTime()); }//w ww .j a v a 2s.co m }