|
Improving Overall Performance
|
Previous Top Next |
| · | Disabling controls
|
| · | Database page settings
|
| · | Maximum connections
|
| · | Exclusive access
|
| · | Single-User access
|
| · | In-memory mode
|
| with CustTable do
|
| begin
|
| DisableControls;
|
| try
|
| First;
|
| while not Eof do
|
| begin
|
| { Process each record here }
|
| Next;
|
| end;
|
| finally
|
| EnableControls;
|
| end;
|
| end;
|