Java SQL ResultSet Boolean Read getBoolean(ResultSet rs, String columnName)

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

Description

get a Boolean object from a result set column with given name

License

Open Source License

Parameter

Parameter Description
rs a parameter
columnName a parameter

Exception

Parameter Description
SQLException an exception

Return

the value, which may be null

Declaration

public static Boolean getBoolean(ResultSet rs, String columnName) throws SQLException 

Method Source Code

//package com.java2s;
/*//from  w ww .ja v  a2  s .co  m
 * Copyright 2010 Research Studios Austria Forschungsgesellschaft mBH
 *
 * This file is part of easyrec.
 *
 * easyrec is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * easyrec 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 easyrec.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.sql.*;

public class Main {
    /**
     * get a Boolean object from a result set column with given name
     *
     * @param rs
     * @param columnName
     * @return the value, which may be <code>null</code>
     * @throws SQLException
     */
    public static Boolean getBoolean(ResultSet rs, String columnName) throws SQLException {
        boolean value = rs.getBoolean(columnName);
        if (rs.wasNull()) {
            return null;
        }
        return value;
    }
}

Related

  1. getBoolean(ResultSet res, String name)
  2. getBoolean(ResultSet resultSet, int columnIndex)
  3. getBoolean(ResultSet rs, int index)
  4. getBoolean(ResultSet rs, String colName)
  5. getBoolean(ResultSet rs, String columnLabel)
  6. getBoolean(ResultSet rs, String name)
  7. getBooleanFromResultSet(ResultSet rset, String field)
  8. getBooleanOrNull(ResultSet rs, String column)
  9. getBooleanSuppressSQLException(final ResultSet rs, final String columnLabel)