Java SQL ResultSet Int Read getInt(ResultSet rs, String column)

Here you can find the source of getInt(ResultSet rs, String column)

Description

get and integer from ResultSet rs with name 'column'

License

Open Source License

Parameter

Parameter Description
rs The ResultSet to get this column from
column The column to get

Exception

Parameter Description
SQLException if column does not exist or other SQLExceptions

Return

The target column value

Declaration

public static int getInt(ResultSet rs, String column) throws SQLException 

Method Source Code

//package com.java2s;
/*/*from   w ww  .j  a va2  s  .  co m*/
 * Copyright 2011, United States Geological Survey or
 * third-party contributors as indicated by the @author tags.
 *
 * This program 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.
 *
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/  >.
 *
 */

import java.sql.ResultSet;

import java.sql.SQLException;

public class Main {
    /** get and integer from ResultSet rs with name 'column' 
     *@param rs The ResultSet to get this column from
    *@param column The  column to get
    *@return The target column value
    *@throws SQLException if column does not exist or other SQLExceptions
    */
    public static int getInt(ResultSet rs, String column) throws SQLException {
        //    try {
        int i = rs.getInt(column);
        if (rs.wasNull())
            i = 0;
        //    } catch (SQLException e) { throw e}
        return i;
    }

    /** get and integer from ResultSet rs with name 'column' 
     *@param rs The ResultSet to get this column from
    *@param column The  column to get
    *@return The target column value
    *@throws SQLException if column does not exist or other SQLExceptions
    */
    public static int getInt(ResultSet rs, int column) throws SQLException {
        //    try {
        int i = rs.getInt(column);
        if (rs.wasNull())
            i = 0;
        //    } catch (SQLException e) { throw e}
        return i;
    }
}

Related

  1. getInt(ResultSet p_rset, int p_col)
  2. getInt(ResultSet res, String name)
  3. getInt(ResultSet results, int parameterIndex)
  4. getInt(ResultSet rs, int columnIndex)
  5. getInt(ResultSet rs, String columnName)
  6. getInteger(final ResultSet rs, final String field)
  7. getInteger(ResultSet resultSet, String columnName)
  8. getInteger(ResultSet rs, String colName)