I am writing a win32 application for client-server in Delphi 7 and in the section that I need to bring aprox. 100k (less or more) rows with data from an Oracle database. Everything is OK so far, but one of the fields must be calculated (simple division with a large number).
My question is, how less resources are consumed and optimal to make a split in the SQL query (possibly a storage procedure) or calculate the value in the code for this field (server side)? I do not want to use TDataset with computed fields.
The Oracle system (v 9.2) is also used by other applications, it is not intended only for this application.
Thanks in advance.
winapi delphi delphi-7
Rba
source share