Hi Isomorphic,
please see this example in current 6.1p (11.1p_2018-04-11):
employees.ds.xml addition:
ARC request to http://127.0.0.1:8888/builtinds/sc/RESTHandler:
Resulting SQL:
I'd expect WHERE criteria for Name and OrgUnit.
I have more issue here and will post them. This is an important one for me.
Best regards
Blama
please see this example in current 6.1p (11.1p_2018-04-11):
employees.ds.xml addition:
Code:
<operationBinding operationType="update" operationId="updateSalary" allowMultiUpdate="true"> <criteria fieldname="OrgUnit" operator="equals" value="TEST" /> </operationBinding>
Code:
<request> <dataSource>employees</dataSource> <operationType>update</operationType> <operationId>updateSalary</operationId> <data> <Salary>1000</Salary> <criteria> <Name>Ralph Brogan</Name> </criteria> </data> </request>
Code:
UPDATE employeeTable SET Salary=1000.0 WHERE (employeeTable.Salary=1000)
I have more issue here and will post them. This is an important one for me.
Best regards
Blama
Comment