Hi, I'm migrating from Delphi5 projects that use BDE to use SDAC. I notice from the Delphi5 documentation that the default behaviour of BDE is to return resultsets as readonly.
What will I have to do to achieve the same with migrating to SDAC? Would I have to set the Read-only field of all components to True?
BDE to SDAC - Readonly data access components
-
AndreyZ
Re: BDE to SDAC - Readonly data access components
Hello,
The TMSTable component obtains editable result sets as well as TTable. The TMSQuery component obtains editable result sets, but TQuery obtains readonly result sets. To obtain the same behaviour with TMSQuery as with TQuery, you should set the TMSQuery.ReadOnly property to True.
The TMSTable component obtains editable result sets as well as TTable. The TMSQuery component obtains editable result sets, but TQuery obtains readonly result sets. To obtain the same behaviour with TMSQuery as with TQuery, you should set the TMSQuery.ReadOnly property to True.
Re: BDE to SDAC - Readonly data access components
Thank you for your kind assistance
-
AndreyZ
Re: BDE to SDAC - Readonly data access components
If any other questions come up, please contact us.