Closed wattnu closed 4 years ago
Thank you. We will have a look at it and get to you back here asap. Best regards, Iwona
No, ID
is meant to be a variable obtained from somewhere in these examples → hence:
SELECT.from(Authors,ID)
is a shortcut for the like of:
SELECT.one.from(Authors).where({ID})
or:
SELECT.one.from(Authors).where('ID=',ID)
Hi Looking at https://cap.cloud.sap/docs/node.js/api#select-forUpdate, I guess, that in both sample code sections,
ID
must be in single quotes:ID
-->'ID'
Regards