Here you can find the source of getSQLTimeStampForDate(Date date)
public static Timestamp getSQLTimeStampForDate(Date date)
//package com.java2s; import java.sql.Timestamp; import java.util.Date; public class Main { public static Timestamp getSQLTimeStampForDate(Date date) { if (date == null) return null; return new Timestamp(date.getTime()); }/* w ww . java 2 s . c o m*/ }