|
|
|
|
HSuggestKeyStart (Function) In french: HSuggèreCléDébut Starts collecting information on executed queries to propose optimization keys. From this function, the queries executed on the connection passed as a parameter are analyzed to propose a set of keys to be added to your data files and improve the performance of your queries. To obtain the result of the analysis, HSuggestKeyEnd must be executed.
HSuggestKeyStart(MyConnection) // Execute queries on MyConnection // with HExecuteSQLQuery and HExecuteQuery ... // Get suggestions sSuggestedKeys is string = RTFToText(HSuggestKeyEnd(MyConnection))
Syntax
HSuggestKeyStart(<Connection>)
<Connection>: Character string or Connection variable Connection to the HFSQL server containing the queries to be analyzed. This connection corresponds to: Remarks - The result obtained with HSuggestKeyEnd will take into account the 10 slowest queries. It is recommended to execute the same query multiple times with different parameters to obtain more useful results.
- To analyze a query with a parameter, you must provide the value of the parameter when the query is executed.
If no value is given for the query parameter(s), the query condition will not be taken into account. In that case, no keys will be suggested. - Keys are suggested according to the data contained in the data file. If a data file contains no data, no key will be suggested.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|