ps.setString(10, previousVersion.getCity());
ps.setString(11, previousVersion.getZip());
ps.setString(12, previousVersion.getState());
if (ps.executeUpdate() == 0)
{
throw new ConcurrencyException("Item not found");
}
ps.close();
ps = null;
}
catch (SQLException e)