
Finding All Names Matching a String
soup := GetUnionSoup("Names");
curs := soup:Query({words: ["lijo"]});
e := curs:Entry();
while e do begin
Print(e);
e := curs:Next();
end
doesn't find anything
soup := GetUnionSoup("Names");
curs := soup:Query({words: ["Elijo"]});
e := curs:Entry();
while e do begin
Print(e);
e := curs:Next();
end;
{address2: "2191 San Elijo Avenue",
address: "The Waterside Building",
class: person,
postal_code: "92007-1839",
cardType: 0,
region: "CA",
city: "Cardiff",
email: NIL,
country: NIL,
name: {class: person, first: "Lavander", last: "Ginsberg", title: NIL},
company: "Waterside Productions",
sorton: "Ginsberg Lavander",
phones: [],
bday: NIL,
_uniqueID: 323,
_modTime: 48374571}
An online version of Programming for the Newton using Macintosh, 2nd ed. ©1996, 1994, Julie McKeehan and Neil Rhodes.
Last modified: 1 DEC 1996