E
Egil Winther
Using OracleDataAdapter we have a problem with integers.
The following table can be used as an example:
CREATE TABLE tCmpCommunic (
nCommunicKey INTEGER NOT NULL,
nPartyKey INTEGER NULL,
nContactMechanismType INTEGER NOT NULL,
nGeoKey INTEGER NULL,
sAddress NVARCHAR2(1000) NULL,
sComment NVARCHAR2(100) NULL,
nComViaGeoKey INTEGER NULL,
bMainContact SMALLINT NULL
);
For some reason, the integer-columns are returned as decimals when using the
Fill-method on
the dataadapter.
Has anyone seen this before? Are there something we are missing?
Thanks in advance
Egil Winther
ShipNet AS
The following table can be used as an example:
CREATE TABLE tCmpCommunic (
nCommunicKey INTEGER NOT NULL,
nPartyKey INTEGER NULL,
nContactMechanismType INTEGER NOT NULL,
nGeoKey INTEGER NULL,
sAddress NVARCHAR2(1000) NULL,
sComment NVARCHAR2(100) NULL,
nComViaGeoKey INTEGER NULL,
bMainContact SMALLINT NULL
);
For some reason, the integer-columns are returned as decimals when using the
Fill-method on
the dataadapter.
Has anyone seen this before? Are there something we are missing?
Thanks in advance
Egil Winther
ShipNet AS