Convert a java.util.Date Object to a java.sql.Date Object

Convert a java.util.Date Object to a java.sql.Date Object

The following code demonstrates how to convert a java.util.Date object to a java.sql.Date object:

import java.sql.*;import java.util.*;public class cs{public static void main(String[] args)  {  GregorianCalendar date_1=(GregorianCalendar)Calendar.getInstance();  System.out.println(date_1.getTime());  java.sql.Date date_2= new java.sql.Date((date_1.getTime()).getTime     ());   System.out.println(date_2);  }}
Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular