In my program all there is, is a window with a browsing table control
that i'm filling with this code:
IF (HExecuteQuery(EXPRESS_qry_searchProduct, ,hQueryDefault)) THEN
TableDeleteAll(TABLE_products)
FOR EACH EXPRESS_qry_searchProduct
TableAddLine(TABLE_products, qry_searchProducts.productId,
qry_searchProduct.name, qry_searchProducts.price)
END
ELSE
Error(HError(hErrCurrent))
END
The analysis only has 1 table with those 3 items: ProductId, name, Price.
ProductId is unique key with Case sensitive, Accent sensitive, Space,
punctuation and special char. sensitive options checked.
Name is key with duplicates and Case sensitive, Accent sensitive, Space,
punctuation and special char. sensitive options checked.
Price is not key.
The code and the analysis is the same (only 1 table with 3 items and
same keys) in both programs but no matter what MySQL keeps loading the
table 6 times faster than if i use the HFSQL database.
Is there something i need to do to get the same speed or for it to be
faster?