Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » DBISAM Technical Support » Incident Reports » Incident Reports Addressed for Version 3.18 » View Incident Report |
Serious |
Reported By: Bernd Kuhlmann Reported On: 9/25/2002 For: Version 3.16 Build 1 |
var tableOK: Boolean; begin table1.tablename:='ABC'; try table1.open tableOK:=true; except on e: exception do tableOK:=false; end; end; Workaround: var tableOK: Boolean; begin table1.tablename:='ABC'; try if table1.exists then begin table1.open tableOK:=true; end else begin tableOK:=false; end; except on e: exception do tableOK:=false; end; end;
This web page was last updated on Wednesday, October 30, 2024 at 11:41 AM | Privacy PolicySite Map © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |