From: <na...@us...> - 2006-05-01 14:28:30
|
Revision: 670 Author: nandod Date: 2006-05-01 07:28:18 -0700 (Mon, 01 May 2006) ViewCVS: http://svn.sourceforge.net/instantobjects?rev=670&view=rev Log Message: ----------- * [ 1475982 ] - the real fix. Modified Paths: -------------- trunk/Source/Core/InstantDBBuild.pas Modified: trunk/Source/Core/InstantDBBuild.pas =================================================================== --- trunk/Source/Core/InstantDBBuild.pas 2006-04-25 08:12:33 UTC (rev 669) +++ trunk/Source/Core/InstantDBBuild.pas 2006-05-01 14:28:18 UTC (rev 670) @@ -742,16 +742,7 @@ DoBeforeCommandExecute(CurrentCommand); try if CurrentCommand.Enabled then - begin - Connector.StartTransaction; - try - CurrentCommand.Execute; - Connector.CommitTransaction; - except - Connector.RollbackTransaction; - raise; - end; - end; + CurrentCommand.Execute; except on E: Exception do begin |