You are not logged in.
Pages: 1
function TRestStorageExternal.ExecuteDirect(const SqlFormat: RawUtf8;
const Args, Params: array of const; ExpectResults: boolean): ISqlDBRows;
var
stmt: ISqlDBStatement;
begin
...
try
stmt := fProperties.NewThreadSafeStatementPrepared(
SqlFormat, Args, ExpectResults, {except=}true); <<<< when some exception happens here....
...
except
<<<<<<<<<<<< FLastDBErro dont is filled
stmt := nil;
HandleClearPoolOnConnectionIssue; // leave result=nil to notify error
end;
end;
then if i try get erro with GetDbError i receive a empty string.
my sugestion
except
on E: Exception do
begin
SetDbError(E.Message);
stmt := nil;
HandleClearPoolOnConnectionIssue; // leave result=nil to notify error
end;
end;
Offline
My guess is that it is a problem at the DB provider level, not at ORM level.
In fact, the ECoreDBException.CreateAfterSetMessageUtf8 method should be called by the exception class itself, when it occurs.
It is too late to try to fix it at ORM level.
What is the exception class?
Which SQL DB layer are you using?
I have tried to fix it for all DB units.
Please check with
https://github.com/synopse/mORMot2/commit/6030847b7
Offline
Pages: 1