Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » DBISAM Technical Support » Product Manuals » DBISAM Version 4 Manual for RAD Studio XE (Delphi) » Using DBISAM » Verifying and Repairing Tables |
begin with MyTable do begin DatabaseName:='d:\temp'; TableName:='customer'; if Exists then begin if VerifyTable then ShowMessage('Table is valid') else ShowMessage('Table is corrupted'); end; end; end;
begin with MyTable do begin DatabaseName:='d:\temp'; TableName:='customer'; if Exists then begin if RepairTable then ShowMessage('Table was valid') else ShowMessage('Table was corrupted, check the log '+ 'messages for repair status'); end; end; end;
This web page was last updated on Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |