Hello All,
I need to find maximum value in one of the fields of the table. I open it using tCursor, and use cMax to get the maximum:
tcData.open(":data:table"
tcData.edit()
nuValue = tcData.cMax("field 1"
It works fine, however, i'm afraid this can fail in multiuser environment, because cMax requires full lock on the table. Is there any alternative to this function?
Thank you
I need to find maximum value in one of the fields of the table. I open it using tCursor, and use cMax to get the maximum:
tcData.open(":data:table"
tcData.edit()
nuValue = tcData.cMax("field 1"
It works fine, however, i'm afraid this can fail in multiuser environment, because cMax requires full lock on the table. Is there any alternative to this function?
Thank you