Java Utililty Methods SQL Date Parse

List of utility methods to do SQL Date Parse

Description

The list of methods to do SQL Date Parse are organized into topic(s).

Method

java.sql.DatestrToSqlDate(String format, String value)
str To Sql Date
Date utilDate = strToJavaDate(format, value);
return convertJavaDateToSqlDate(utilDate);
java.util.DatestrToUtilDate(String fecha, String hora)
str To Util Date
String f = strToDateFormToDB(fecha) + " " + hora + ":00";
java.sql.Timestamp dh = java.sql.Timestamp.valueOf(f);
return (java.util.Date) dh;