I am working with a PostgreSQL database , in which I have a field of type timestamp
since I only want a date with its time (no time zone ).
To do the saving I am making use of the object LocalDateTime
of Java 8.
The question is, is it good practice to do it using that object, or should we use the Date
object in the java.sql package?