![]() | Products |
| Home » Technical Support » DBISAM Technical Support » Incident Reports » Incident Reports Addressed for Version 3.18 » View Incident Report |
| 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, April 8, 2026 at 04:38 AM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

