How to replace: ?
AddIndex
SetRange
CancelRange
EditRangeStart
search on forum and Help does not provide such information
missed functionality from TTable
Hello,
UniDAC doesn't support such functionality . Instead of the AddIndex method you can call explicitly the SQL query for creating an index.
UniConnection1.ExecSQL('CREATE INDEX ......',[]);
Instead of the SetRange, CancelRange, EditRangeStart methods, you can use the TCustomDADataSet.Filter property for local filtration on the client, and the TCustomDADataSet.FilterSQL property - for filtration on the server.
UniDAC doesn't support such functionality . Instead of the AddIndex method you can call explicitly the SQL query for creating an index.
UniConnection1.ExecSQL('CREATE INDEX ......',[]);
Instead of the SetRange, CancelRange, EditRangeStart methods, you can use the TCustomDADataSet.Filter property for local filtration on the client, and the TCustomDADataSet.FilterSQL property - for filtration on the server.