Skip to content

Instantly share code, notes, and snippets.

View jmarton's full-sized avatar

József Marton jmarton

View GitHub Profile
@jmarton
jmarton / LocalDateTestJDBC.java
Last active December 2, 2021 07:25
Demo of the new Java 8 Time API vs Oracle JDBC driver for the Database Laboratory course
import java.sql.Connection;
import java.sql.Date;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Timestamp;
import java.time.LocalDate;
import java.time.LocalDateTime;