Here you can find the source of convertSqlTime(Date date)
public static java.sql.Timestamp convertSqlTime(Date date)
//package com.java2s; //License from project: Open Source License import java.util.Date; public class Main { public static java.sql.Timestamp convertSqlTime(Date date) { java.sql.Timestamp timestamp = new java.sql.Timestamp(date.getTime()); return timestamp; }/*from w w w . ja va 2 s . co m*/ }