ExecQuery
<generic data manager handle> ExecQuery <query string> <content interface list>
Query
Query the library manager for content based full text search. Searches all the metadata and the contents of the files in the library.
generic data manager handle
Generic data manager handle. See DMDirector_OpenWorkspace.
query string
String to query in the library
content interface list
Content interface list handle
|
set gdm [DMDirector_OpenWorkspace $director $ws $repoh 0]
set qryhandle [$gdm GetQuery]
set stringtosearch "MS6000"
set clist [ContentInterfaceList]
set status [$gdm ExecQuery $stringtosearch $clist]
set cilistsize [ContentInterfaceList_size $clist]