Links
dtSearch Text Retrieval Engine Programmer's Reference 7.70
dtsSearchJob::resultsHandle Data Member
dtsSearchJob Structure | dtsSearchJob Structure | Example | Send Feedback

Handle of a dtsSearchResults to store the results of this search.

void * resultsHandle;
Description

To obtain a handle, declare a dtsSearchResults object and call its getHandle() method. After the search, you can use the dtsSearchResults object to access the results of the search.

Example
    dtsSearchResults searchResults;
    dtsSearchJob searchJob;
    // ... set up searchJob ...
    searchJob.resultsHandle = searchResults.getHandle();
    short errorFlag;
    dtssDoSearchJob(searchJob, errorFlag);
    // .. now searchResults contains the results of the search
Structure
Links
You are here: C++ API > Classes > dtsSearchJob Structure > dtsSearchJob::resultsHandle Data Member
Copyright (c) 1995-2012 dtSearch Corp. All rights reserved.