Performing Operations - trillium_geolocation - 15.19

Trillium Geolocation Reference

Product type
Software
Portfolio
Verify
Product family
Trillium
Product
Trillium > Trillium Geolocation
Version
15.19
Language
English
Product name
Trillium Geolocation
Title
Trillium Geolocation Reference
Copyright
2023
First publish date
2017
Last updated
2024-04-16
Published on
2024-04-16T03:27:32.653616

Once the contact object is loaded with the appropriate data, operations on that data begin. Identify the specific actions to be taken, such as processing an address to improve quality and homogeneity, or generating a matchkey to detect duplicate records. Search for errors by checking the return value of each command:

   if (!ProcessAddress(&myServer,
         &myContact,
         -1 /*Acceptable Validation Level*/,
         60 /*Inner Matchscore Threshold*/,
         0 /*Outer Matchscore Threshold*/))
   {
      cout << "Error processing address: "
         << getLastError(&myServer)
         << endl;
      return -1;
    }
   if (!GenerateMatchkey(&myServer, &myContact))
   {
      cout << "Error generating matchkey: "
         << getLastError(&myServer)
         << endl;
      return -1;
   }