it returns the current value of the select column, all i need is to return the original value for checking if the value really changed.
while(rs.next()){
if (rs.rowUpdated){
String strOrigVal = "";
rs.getOriginalRow();
strOrigVal = rs.getString("col1");
}
}