Hello
is it possible to work with a TUniTable component and make operations on memory (append, edit, post) ?
When the user validate, i want to write on database.
I have tried TUniTransaction but data is written on database in real time (not when i commit...)
Thanks
UniTable in memory
Re: UniTable in memory
Hello,
You can try the TVirtualTable component from the Data Access palette.
After validation you can write changes to a database table.
Regards
Michal
You can try the TVirtualTable component from the Data Access palette.
After validation you can write changes to a database table.
Regards
Michal
Re: UniTable in memory
Hello,
You can use the CachedUpdates mode. In this mode, all the changes are saved in the DataSet, direct saving to the database is performed only after calling the ApplyUpdates method: http://www.devart.com/unidac/docs/devar ... pdates.htm .
You can use the CachedUpdates mode. In this mode, all the changes are saved in the DataSet, direct saving to the database is performed only after calling the ApplyUpdates method: http://www.devart.com/unidac/docs/devar ... pdates.htm .