DemoPreparedStatementSetDate.java Source code

Java tutorial

Introduction

Here is the source code for DemoPreparedStatementSetDate.java

Source

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;

public class DemoPreparedStatementSetDate {
    public static java.sql.Date getCurrentJavaSqlDate() {
        java.util.Date today = new java.util.Date();
        return new java.sql.Date(today.getTime());
    }

    public static Connection getConnection() throws Exception {
        String driver = "org.gjt.mm.mysql.Driver";
        String url = "jdbc:mysql://localhost/databaseName";
        String username = "root";
        String password = "root";
        Class.forName(driver);
        Connection conn = DriverManager.getConnection(url, username, password);
        return conn;
    }

    public static void main(String[] args) throws Exception {
        Connection conn = null;
        PreparedStatement pstmt = null;
        try {
            conn = getConnection();
            String query = "insert into date_table(id, date_column) values(?, ?)";
            pstmt = conn.prepareStatement(query);
            pstmt.setString(1, "0001");
            java.sql.Date date = getCurrentJavaSqlDate();
            pstmt.setDate(2, date);

            // execute query, and return number of rows created
            int rowCount = pstmt.executeUpdate();
            System.out.println("rowCount=" + rowCount);
        } finally {
            pstmt.close();
            conn.close();
        }
    }
}