I'm working in an old Delphi 7 project and trying to get my bearings in it. I had heard that TADOTables are bad because they pull down entire tables. However I am looking at one bit of code and I'm wondering if it does the same thing. All it does is set the values of some fields and then do tbl.Post
and possibly does the tbl.Insert
command before it if applicable. (sorry, I'm not the most experienced in Delphi)
Anyway, so should TADOTables be completely phased out or should they only be replaced when doing select *
statements from them practically and they're OK for inserts and updates?