Java SQL Table Column containsColumn(ResultSet rs, String columnName)

Here you can find the source of containsColumn(ResultSet rs, String columnName)

Description

contains Column

License

Open Source License

Declaration

public static boolean containsColumn(ResultSet rs, String columnName) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v3
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/lgpl-3.0-standalone.html
 ******************************************************************************/

import java.sql.ResultSet;
import java.sql.SQLException;

public class Main {
    public static boolean containsColumn(ResultSet rs, String columnName) {
        try {/*w w w .  j  a  v  a  2s. c  o  m*/
            rs.findColumn(columnName);
            return true;
        } catch (SQLException e) {
            return false;
        }
    }
}

Related

  1. columnExists(Connection con, String tableName, String columnName)
  2. columnExists(Connection connection, String table, String column)
  3. columnLabels(final ResultSet results)
  4. extractColumnTypeName(ResultSetMetaData resultSetMetaData, int index)
  5. generateKey(Statement statement, String TableName, String KeyColumn)
  6. getAllFromSensorDb( final Connection jdbcConnection, final String tableName, final String orderByColumn)
  7. getColumn(ResultSet result, int col)