Set Time Using Prepared Statement

From Java Example Source Code

Jump to: navigation, search

Contents

[edit] Overview - Set Time Using Prepared Statement

This Java example program shows how to set time using Prepared Statement.

[edit] Java Source Code

  • Package: example.jdbc.preparedstatement
  • File: DemoPreparedStatementSetTimeAndTimestamp.java
package example.jdbc.preparedstatement;
 
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
 
public class DemoPreparedStatementSetTimeAndTimestamp {
    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 java.sql.Timestamp getCurrentJavaSqlTimestamp() {
	java.util.Date date = new java.util.Date();
	return new java.sql.Timestamp(date.getTime());
    }
 
    public static java.sql.Time getCurrentJavaSqlTime() {
	java.util.Date date = new java.util.Date();
	return new java.sql.Time(date.getTime());
    }
 
    public static void main(String[] args) throws Exception {
	String id = "0001";
	Connection conn = null;
	PreparedStatement pstmt = null;
	try {
	    conn = getConnection();
	    String query = "insert into time_table(id,time_column, timestamp_column) values(?, ?, ?)";
	    pstmt = conn.prepareStatement(query);
	    pstmt.setString(1, id);
	    java.sql.Time time = getCurrentJavaSqlTime();
	    System.out.println("time=" + time);
	    pstmt.setTime(2, time);
	    java.sql.Timestamp timestamp = getCurrentJavaSqlTimestamp();
	    System.out.println("timestamp=" + timestamp);
	    pstmt.setTimestamp(3, timestamp);
	    // execute query, and return number of rows created
	    int rowCount = pstmt.executeUpdate();
	    System.out.println("rowCount=" + rowCount);
	} finally {
	    pstmt.close();
	    conn.close();
	}
    }
}

[edit] What Result You Can Get

Coming soon...

[edit] Required External Libraries and/or Files for this Java Example

In order to run this Java example, one of the following libraries may be required: In order to run this example program, one of the following libraries may be required:


[edit] How to Run this Java Example Program

We recommend running this Java example program with Eclipse.

For assistance in working with Eclipse, please see How to Run Java Program with Eclipse.

It's fairly easy.



[edit] Question & Answer

Any question?

Click edit and post your question or answer here.


Personal tools