Here you can find the source of getDateTimeTypeString(Connection conn)
public static String getDateTimeTypeString(Connection conn)
//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; } }