--- ibx/trunk/examples/employee/unit1.lfm 2018/04/16 09:24:55 208 +++ ibx/trunk/examples/employee/unit1.lfm 2018/03/14 12:48:51 209 @@ -10,7 +10,7 @@ object Form1: TForm1 OnClose = FormClose OnShow = FormShow Position = poMainFormCenter - LCLVersion = '1.8.1.0' + LCLVersion = '1.8.3.0' object Button1: TButton Left = 845 Height = 25 @@ -587,8 +587,10 @@ object Form1: TForm1 BeforeOpen = EmployeesBeforeOpen BufferChunks = 1000 CachedUpdates = False + EnableStatistics = False GenerateParamNames = False GeneratorField.ApplyOnEvent = gaeOnNewRecord + MasterDetailDelay = 0 SQL.Strings = ( 'Select sum(Salary) as TotalSalaries' 'From EMPLOYEE' @@ -633,6 +635,7 @@ object Form1: TForm1 BeforeOpen = EmployeesBeforeOpen BufferChunks = 5000 CachedUpdates = False + EnableStatistics = False DeleteSQL.Strings = ( 'Delete From EMPLOYEE A' 'Where A.EMP_NO = :EMP_NO' @@ -685,6 +688,7 @@ object Form1: TForm1 GeneratorField.Field = 'EMP_NO' GeneratorField.ApplyOnEvent = gaeOnNewRecord GenerateParamNames = False + MasterDetailDelay = 0 DataSetCloseAction = dcSaveChanges AfterTransactionEnd = EmployeesAfterTransactionEnd OnValidatePost = EmployeesValidatePost @@ -845,8 +849,10 @@ object Form1: TForm1 BeforeOpen = CountriesBeforeOpen BufferChunks = 1000 CachedUpdates = False + EnableStatistics = False GenerateParamNames = False GeneratorField.ApplyOnEvent = gaeOnNewRecord + MasterDetailDelay = 0 SQL.Strings = ( 'Select A.COUNTRY, A.CURRENCY From COUNTRY A' 'JOIN JOB J On J.JOB_COUNTRY = A.COUNTRY' @@ -891,8 +897,10 @@ object Form1: TForm1 BeforeOpen = JobCodesBeforeOpen BufferChunks = 1000 CachedUpdates = False + EnableStatistics = False GenerateParamNames = False GeneratorField.ApplyOnEvent = gaeOnNewRecord + MasterDetailDelay = 0 SQL.Strings = ( 'Select A.JOB_CODE, A.JOB_TITLE From JOB A' 'Where JOB_COUNTRY = :JOB_COUNTRY and JOB_GRADE = :JOB_GRADE' @@ -930,8 +938,10 @@ object Form1: TForm1 Transaction = IBTransaction1 BufferChunks = 1000 CachedUpdates = False + EnableStatistics = False GenerateParamNames = False GeneratorField.ApplyOnEvent = gaeOnNewRecord + MasterDetailDelay = 0 SQL.Strings = ( 'Select A.DEPT_NO, A.DEPARTMENT From DEPARTMENT A' ''