Here you can find the source of getLongValue(ResultSet rs, int valueIndex)
public static Object getLongValue(ResultSet rs, int valueIndex) throws SQLException
//package com.java2s; import java.sql.ResultSet; import java.sql.SQLException; public class Main { public static Object getLongValue(ResultSet rs, int valueIndex) throws SQLException { return rs.getString(valueIndex); }/*from w w w . j a va 2 s .com*/ }