|
|
|
|
|
HCheckIndex (Function) In french: HVérifieIndex
 Available only with these kinds of connection
Checks whether the data found in the index file (.NDX file) properly refers the data found in the data file (.FIC file). This function applies to the HFSQL data files (Classic or Client/Server) only. New in SaaSReminder An index is corrupted when one of the records it references is not the one expected. In this case, the data file must be re-indexed.
let RésultatIndex = HCheckIndex(Client)
SWITCH RésultatIndex
CASE 0
Info("Index correct")
CASE 1
Info("Le fichier nécessite une optimisation.")
CASE 2
Info("Erreur HFSQL " + HError() + " pendant le test")
END
Syntax
<Result> = HCheckIndex([<Data file> [, <Key item>] [, <Progress Bar>]])
<Result>: Integer Can correspond to: - 0 if the check is correct.
- 1 if the index is corrupted: reindexing is required (function HIndex).
- 2 in the event of an HFSQL error: the data file is inaccessible, etc.
- 3 if the function is not supported by this type of data file (xBase file, AS400, etc.).
<Data file>: Optional character string Name of the data file used. If this name is not specified, HCheckIndex will use the last data file used by the last HFSQL function (function starting with "H"). <Key item>: Optional character string Name of the key item to check. If this parameter is not specified, all the keys of the data file are checked. <Progress Bar>: Optional control name or window name - Name of the window in which the progress bar will be displayed,
- Name of the Progress Bar control to use.
Remarks Corrupted index When the function detects a problem in the index file, the H.Comment variable contains: <Name of affected key> + TAB + <Record number causing problem> + CR + <Name of affected key 2> + TAB + <Record number causing problem 2> ... <Record number causing problem> is equal to -1 if no record was defined. Note If the index file is completely corrupted, the variable H.Comment variable is left blank.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|