FieldDefs InternalCalcField
Posted: Thu 07 Oct 2010 07:45
Hi,
How can I check if a field in a dataset (TIBCQuery) is a computed field?
CREATE TABLE RENNEN (
ID BIGINT NOT NULL,
SKILEHRER BIGINT,
COALESCED_SKILEHRER COMPUTED BY (coalesce(skilehrer, 0))
);
Neither Fields.ReadOnly nor FieldDefs.InternalCalcField returns true for the field "COALESCED_SKILEHRER". The dataset is filled with an SELECT statement.
Regards, ch.
How can I check if a field in a dataset (TIBCQuery) is a computed field?
CREATE TABLE RENNEN (
ID BIGINT NOT NULL,
SKILEHRER BIGINT,
COALESCED_SKILEHRER COMPUTED BY (coalesce(skilehrer, 0))
);
Neither Fields.ReadOnly nor FieldDefs.InternalCalcField returns true for the field "COALESCED_SKILEHRER". The dataset is filled with an SELECT statement.
Regards, ch.