我有一个包含这些字段的人员表:LEncodedString : String;
begin
LEncodedString := TIdURI.URLEncode('http://www.malcolmgroves.com');
sharedApplication.openURL(StringToNSURL(LEncodedString));
end;
,id
,name
,parentId
。后两者可以为空。
我需要单独从该信息中检索整个系列,并且我已经有一个遍历系列树的查询,然后我可以通过spouseId
递归查询其结果:
id
问题是,这不会向上移动。我需要能够通过一个查询选择SELECT * FROM people WHERE people.id = ? OR people.parentId = ? OR people.spouseId = ?
的位置。
我不能在遍历后代之后为父进程调用遍历器,因为整个事情都是异步的,这样做意味着我必须在回调中进行。