Here you can find the source of getInteger(ResultSet rs, String column)
public static Integer getInteger(ResultSet rs, String column) throws SQLException
//package com.java2s; //License from project: Apache License import java.sql.*; public class Main { public static Integer getInteger(ResultSet rs, String column) throws SQLException { int i = rs.getInt(column); return rs.wasNull() ? null : i; }//ww w . jav a2 s. c o m }