Page 1 of 1
missed functionality from TTable
Posted: Fri 09 Mar 2012 20:07
by Lepsik
How to replace: ?
AddIndex
SetRange
CancelRange
EditRangeStart
search on forum and Help does not provide such information
Posted: Tue 13 Mar 2012 10:50
by AlexP
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.