Get date from Oracle : Date Time Timestamp « Database SQL JDBC « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » Database SQL JDBC » Date Time Timestamp 




Get date from Oracle
    
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class GetDateFromOracle {
  public static Connection getConnection() throws Exception {
    String driver = "oracle.jdbc.driver.OracleDriver";
    String url = "jdbc:oracle:thin:@localhost:1521:databaseName";
    Class.forName(driver);
    return DriverManager.getConnection(url, "name""password");
  }

  public static void main(String args[]) {
    String GET_RECORD = "select date_column, time_column, "
        "timestamp_column from TestDates where id = ?";
    ResultSet rs = null;
    Connection conn = null;
    PreparedStatement pstmt = null;
    try {
      conn = getConnection();
      pstmt = conn.prepareStatement(GET_RECORD);
      pstmt.setString(1"0001");
      rs = pstmt.executeQuery();
      while (rs.next()) {
        java.sql.Date dbSqlDate = rs.getDate(1);
        java.sql.Time dbSqlTime = rs.getTime(2);
        java.sql.Timestamp dbSqlTimestamp = rs.getTimestamp(3);
        System.out.println("dbSqlDate=" + dbSqlDate);
        System.out.println("dbSqlTime=" + dbSqlTime);
        System.out.println("dbSqlTimestamp=" + dbSqlTimestamp);
      }
    catch (Exception e) {
      e.printStackTrace();
    finally {
      try {
        rs.close();
        pstmt.close();
        conn.close();
      catch (SQLException e) {
        e.printStackTrace();
      }
    }
  }
}

           
         
    
    
    
  














Related examples in the same category
1.Convert java.sql.Timestamp to long for easy compare
2.Get Date From MySql
3.Get java.sql.Timestamp fro current time
4.Insert Date, time and date time data to Oracle
5.Construct java.sql.Timestamp from string
6.Demo PreparedStatement Set Time
7.Demo PreparedStatement Set Timestamp
8.Demo PreparedStatement Set Date
9.Compare two times
10.Convert an Object to a DateTime, without an Exception
11.Convert an Object to a Timestamp, without an Exception
12.Convert an Object to a java.sql.Time
13.Timestamp parse
14.Parse date and time
15.convert Strings to Dates and Timestamps and vice versa.
16.Convert into java.sql.Time (or into java.util.Calendar)
17.A method to get the current date and time to use in a timestamp
18.A method to get the current date to use in a timestamp
19.Get today's Timestamp
20.Convert String To Timestamp
21.Format Timestamp
22.Convert a timestamp (= millisecs) to a concise string
23.Get Date stamp
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.