Explorar el Código

* Set ReturnCode value after a call to ExecSqlList

git-svn-id: trunk@12972 -
blikblum hace 16 años
padre
commit
d2117f9285
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/fcl-db/src/sqlite/customsqliteds.pas

+ 1 - 1
packages/fcl-db/src/sqlite/customsqliteds.pas

@@ -1441,7 +1441,7 @@ procedure TCustomSqliteDataset.ExecSQLList;
 begin
   if FSqliteHandle = nil then
     GetSqliteHandle;
-  SqliteExec(PChar(FSQLList.Text), nil, nil);
+  FReturnCode := SqliteExec(PChar(FSQLList.Text), nil, nil);
 end;
 
 procedure TCustomSqliteDataset.ExecSQL;