Here you can find the source of toSqlDate(LocalDate ld)
public static java.sql.Date toSqlDate(LocalDate ld)
//package com.java2s; //License from project: Apache License import java.time.LocalDate; public class Main { public static java.sql.Date toSqlDate(LocalDate ld) { return ld == null ? null : java.sql.Date.valueOf(ld); }//from w ww . j a v a2s . c o m }