If i have many rows in a datawindow/store that will get inserted/updated/deleted:
It's not clear whether a datawindow/store update is a single round trip to the server, or if each row is its own roundtrip.
the same question applies to PS 2022
I assume that datastores and datawindows work the same.
to be clear, you are saying this is a single roundtrip:
dw_1.setitem( 1, 'col1', 'value')
dw_1.setitem( 2, 'col1', 'value')
dw_1.setitem( 3, 'col1', 'value')
dw_1.update() //updates all 3 rows as a single roundtrip.