update/delete multiple entry

I don’t understand what’s the best way!

I have to cycle in the foundset and check the field or there’s a best way?

Could you explain a bit better what you are trying to do?

I have to update the field x=“A” in all the records where field y=1.

Is there a best way that this:

foundset.find()
y=1
foundset.search()
for (i=0; ...){
   foundset.setSelectedIndex(i)
   x="A"
}

Take a look at the sample code for databaseManager.getFoundSetUpdater().

greg.