Java SQL Time From getDateTimeTypeString(Connection conn)

Here you can find the source of getDateTimeTypeString(Connection conn)

Description

get Date Time Type String

License

Open Source License

Declaration

public static String getDateTimeTypeString(Connection conn) 

Method Source Code

//package com.java2s;
/*/*w w  w .  jav  a 2s .com*/
Weave (Web-based Analysis and Visualization Environment)
Copyright (C) 2008-2011 University of Massachusetts Lowell
    
This file is a part of Weave.
    
Weave is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License, Version 3,
as published by the Free Software Foundation.
    
Weave is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Weave.  If not, see <http://www.gnu.org/licenses/>.
*/

import java.sql.Connection;

import java.sql.SQLException;

public class Main {
    public static String ORACLE = "Oracle";

    public static String getDateTimeTypeString(Connection conn) {
        if (isOracleServer(conn))
            return "DATE";

        return "DATETIME";
    }

    /**
     * This function checks if a connection is for an Oracle server.
     * @param conn A SQL Connection.
     * @return A value of true if the Connection is for an Oracle server.
     */
    public static boolean isOracleServer(Connection conn) {
        try {
            if (conn.getMetaData().getDatabaseProductName().equalsIgnoreCase(ORACLE))
                return true;
        } catch (SQLException e) // This is expected to be thrown if the connection is invalid.
        {
            e.printStackTrace();
        } catch (RuntimeException e) // This is important for catching unexpected errors.
        {
            return false;
        }

        return false;
    }
}

Related

  1. getDateTimeRtnTime(Date date, String time)
  2. getDateTimeStr(Date date)
  3. getDateTimeString(java.sql.Date dd)
  4. getDateTimeString(String format)
  5. getDateTimeStringFromCalendar(Calendar calendar)
  6. getDateTimeTypeString(Connection conn)
  7. toDateTime(final java.util.Date d)
  8. toDatetime(long value)
  9. toDateTimeString(java.util.Date inDate)