Java examples for java.sql:Table
Gets the type of the given column Name of the table Name.
/*// w w w .jav a 2 s . c o m * Zed Attack Proxy (ZAP) and its related class files. * * ZAP is an HTTP/HTTPS proxy for assessing web application security. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import org.apache.log4j.Logger; public class Main{ private static final Logger logger = Logger.getLogger(DbUtils.class); /** * Gets the type of the given column {@code columnName} of the table * {@code tableName}. * * @param connection * the connection to the database * @param tableName * the name of the table that has the column * @param columnName * the name of the column that will be used to get the type * @return the type of the column, or -1 if the column doesn't exist. * @throws SQLException * if an error occurred while checking the type of the column */ public static int getColumnType(final Connection connection, final String tableName, final String columnName) throws SQLException { int columnType = -1; ResultSet rs = null; try { rs = connection.getMetaData().getColumns(null, null, tableName, columnName); if (rs.next()) { columnType = rs.getInt("SQL_DATA_TYPE"); } } finally { try { if (rs != null) { rs.close(); } } catch (SQLException e) { if (logger.isDebugEnabled()) { logger.debug(e.getMessage(), e); } } } return columnType; } }