Additional
dbCAP
AnyDAC
ThinDAC
NCOCI8
Topic: TIntegerField
TIntegerField
Posted: 2003/04/30 13:05
 
I constructed table in Oracle like so:
CREATE TABLE ZAK
(
ID INTEGER NOT NULL,
KUPAC INTEGER NOT NULL,
MJESTO VARCHAR2(25),
DATUM DATE,
.....
However, when I open the TOCIQuery and populate persistent fields, I get TFloatField for Integer columns. This makes problems for various components which format these fields using decimal places. I searched through NCOCI sources and saw only floatfields are used. Is there some easy workaround I am overlooking?
RE: TIntegerField
Posted: 2003/05/05 15:27
 
I guess the only workaround for this is to use TFloatField.DisplayFormat property
RE: TIntegerField
Posted: 2003/05/28 14:13
 
I found it out: TOCIQuery component has a property DataFormat, which has subproperty EnableInteger, disabled by default.