The list of questions and answers related to integration with 3d party products.
A: AnyDAC comes with FastReport and few other add-on's. You can find them in AnyDAC\AddOn folder. We do not support them officially. All of them were made by the AnyDAC customers. The AnyDAC Team took an addons coordinator role on it self. So, if somebody would like to provide any new addon or change existing one, then AnyDAC team will appreciate, if you will send your code to us.
A: The problem is that setting TDataset(Qurey).IsUnidirectional to True will break TADDataSet functionality. At moment, I does not have a correct solution and need additional investigation. I will suggest to modify DevEx sources to overcome this issue. For that:
function TcxDBDataProvider.IsUniDirectional: Boolean; begin if Assigned(DataSet) then begin {$IFDEF DELPHI6} if DataSet.IsUniDirectional then Result := True else {$ENDIF} if DataSet is TADRdbmsDataSet then Result := TADRdbmsDataSet(DataSet).FetchOptions.Unidirectional else Result := False; end else Result := False; end;
|
What do you think about this topic? Send feedback!
|