Here you can find the source of copyInt(ResultSet rs, int sourcePos, PreparedStatement stmt, int destPos)
public static void copyInt(ResultSet rs, int sourcePos, PreparedStatement stmt, int destPos) throws SQLException
//package com.java2s; /*//from www . j av a 2 s.c om * Copyright (C) 2008 Patrick Valsecchi * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 U */ import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; public class Main { public static void copyInt(ResultSet rs, int sourcePos, PreparedStatement stmt, int destPos) throws SQLException { final int value = rs.getInt(sourcePos); if (rs.wasNull()) stmt.setNull(destPos, Types.INTEGER); else stmt.setInt(destPos, value); } }