Function EN Version 5.00

@CloseFtSearch

Database Search

Syntax

@CloseFtSearch(FTSEARCHHANDLE1);

Description

Closes a previously opened full-text search with the FTSEARCHHANDLE FTSEARCHHANDLE1 and returns the closed FTSEARCHHANDLE1.

Example: @CloseFtSearch(FTSEARCHHANDLE1);

DBHANDLE1:=@OpenDB("TEST.NSF");
FTSHANDLE:=@OpenFtSearch(DBHANDLE1;"print";8);
FTSHANDLE:=@CloseFtSearch(FTSHANDLE);
DBHANDLE1:=@CloseDB(DBHANDLE1);

A full-text search is opened for the DB "TEST.NSF" and the search string "print" is opened. Option 8 must be specified.
The full-text search is then closed again (without searching).

Note : This text was machine-translated and may contain inaccuracies.