Subject | Re: [firebird-support] Identifying exceptions from Delphi |
---|---|
Author | Greg Peterson |
Post date | 2004-07-09T20:43:24Z |
Try something like this:
Query1.Append;
try
Query1.Post;
except
on E : Exception do
begin
showmessage('Something went wrong - Error message: '+E.Message);
end;
end;
The E.message will give you an insight as to exactly what went wrong.
-- Greg
Query1.Append;
try
Query1.Post;
except
on E : Exception do
begin
showmessage('Something went wrong - Error message: '+E.Message);
end;
end;
The E.message will give you an insight as to exactly what went wrong.
-- Greg