I'm migrating from a dbExpress system to FireDAC , the system is in three tiers >), I have changed components on the server side from SQLConnection
to FDConnection
, and SQLDataset
to FDQuery
, on the client side the components remain ClientDataset
, however I saw that in FDQuery
type INT32
are read from the database (MySQL ) as TLongWordFields
and not TIntegerFields
, I have about 100 ClientDatasets
with all fields of type TIntegerField
, I have to do the change in all or is there another way around this?
Note: The auto increment fields are read in FireDAC as TFDAutoIncField
and not TIntegerField
but no incompatibility problem occurs.