You are not logged in.
Pages: 1
yes , i use it , how to fix ID instead of RowID
When I connect to an external database like PostgreSQL, when using the MultiFieldsValues function, it returns RowId instead of ID.
why
want to extract the elements that do not have a key.
is that possible?
I am using the Objects property of IdocList.
For example:
var dL: IdocList;
for var d: IdocDicts in dl.Objects('Name=', '')
I found that it skips the d objects that do not have a 'Name'."
It seems like you're trying to iterate through an IdocList and filter or process objects based on their 'Name' property, but the issue is that objects without a 'Name' are being skipped.
exampel :
var dcTest : TDcoVariantData
dcTest := Doc.InitArray([
Doc.InitObject(['test', 14]),
Doc.InitObject(['test', 41])
]);
who to check if the value of 'test' equals 41 in DocVariantData.
Pages: 1