FireDAC mapping rules do not apply to parameters?
问题 I have a TFDConnection to a FireBird database for which I apply Data type mapping for backward compatibility with a previous data access technology (SQLDirect): with FormatOptions.MapRules.Add do // TIMESTAMP will be ftDateTime instead of ftTimeStamp begin SourceDataType := dtDateTimeStamp; TargetDataType := dtDateTime; end; with FormatOptions.MapRules.Add do // FLOAT will be ftFloat instead of ftSingle begin SourceDataType := dtSingle; TargetDataType := dtDouble; end; FormatOptions