DAC for MySQL
TMySQLTools.Properties.RepairOption | Previous Next |
Sets MySQL Repair command parameters.
Syntax:
RepairOption : TRepairOption;
Type
TRepairOption = (roQuick,roExtended);
Description:
Sets MySQL Repair command parameters (roQuick by default).
Possible parameters values:
- roQuick - MySQL will try to do a REPAIR of only the index tree;
- roExtended - MySQL will create the index row by row instead of creating one index at a time with sorting; this may be better than sorting on fixed-length keys if you have long CHAR keys that compress very well.