Hi,
Can someone show me how can I create a calculated field at runtime with a TOracleDataSet?
The sql is constructed also at runtime, so I *have to create the calc field at runtime, too.
I tried the following code:
f:=TIntegerField.Create(ods1);
f.FieldName:='blabla';
f.FieldKind:=fkCalculated...