Params and ParamData duplication in DFM files

The forum for ZeosLib 7.2 Report problems. Ask for help, post proposals for the new version and Zeoslib 7.2 features here. This is a forum that will be edited once the 7.2.x version goes into RC/stable!!

My personal intention for 7.2 is to speed up the internals as optimal a possible for all IDE's. Hope you can help?! Have fun with testing 7.2
Post Reply
mac_srv
Senior Boarder
Senior Boarder
Posts: 50
Joined: 23.01.2015, 00:04

Params and ParamData duplication in DFM files

Post by mac_srv »

Hi All,

Could someone confirm that TZQuery and TZStoredProc parameters got duplicated in DFM files with sets named "Params" and "ParamData"?

Here an example:

Code: Select all

    object QryRes: TZQuery
    Connection = ZConnection
    SQL.Strings = (
      'Select * From Reservatorio Where CodUsina = :CodUsina')
    Params = <
      item
        DataType = ftUnknown
        Name = 'CodUsina'
        ParamType = ptUnknown
      end>
    DataSource = SrcUsina
    Left = 384
    Top = 16
    ParamData = <
      item
        DataType = ftUnknown
        Name = 'CodUsina'
        ParamType = ptUnknown
      end>
      
This data duplication does not seems to develop any error.

I'm just checking because I'm working with a BDE migration procedure using Regex and I realized this fact comparing the DFM files during the tests.

Regards,

Marcelo.
Post Reply