I need a TStoredProc with a property "DataSource" published because I have a framework that use this property to gain MasterTable in TDataModule.
Because TStoredProc not provide property "DataSource" I derived a new component TmxZStoredProc with only add property "DataSet" like this:
Code: Select all
type
TmxZStoredProc = class(TZStoredProc)
published
{ Published declarations }
property DataSource;
end;
There is a possibility to avoid this?
I compiled with revision TRUNK 7.2.0.3882
Thanks