| java.lang.Object util.ResultSetUtil
ResultSetUtil | public class ResultSetUtil (Code) | | Class documentation.
author: rahul kumar See Also: XXX |
Method Summary | |
public static List | getMappedData(ResultSet rs) return a list containing one Map for each row in the resultset,
each Map contains column_name and value (as Object).
But will you know what to do with Object or should I check the
type and then place in. | public static List | getMappedDataString(ResultSet rs) return a list containing one Map for each row in the resultset,
each Map contains column_name and value (as string). |
getMappedData | public static List getMappedData(ResultSet rs) throws java.sql.SQLException(Code) | | return a list containing one Map for each row in the resultset,
each Map contains column_name and value (as Object).
But will you know what to do with Object or should I check the
type and then place in. Hope instanceof helps.
|
getMappedDataString | public static List getMappedDataString(ResultSet rs) throws java.sql.SQLException(Code) | | return a list containing one Map for each row in the resultset,
each Map contains column_name and value (as string).
|
|
|