RE: NUMERIC type makes trouble in MS Access - Mailing list pgsql-odbc

From Danny Severns
Subject RE: NUMERIC type makes trouble in MS Access
Date
Msg-id DF57AD6C522A1C44BBD0A37427EABF923E6F8E32@JANDC000-MBN05.ventech.com
Whole thread Raw
In response to Re: NUMERIC type makes trouble in MS Access  ("Tobias Wendorff" <tobias.wendorff@tu-dortmund.de>)
Responses RE: NUMERIC type makes trouble in MS Access  ("Tobias Wendorff" <tobias.wendorff@tu-dortmund.de>)
List pgsql-odbc

Don't know if this helps, and I know almost nothing about Access, but I found this in the MS Docs, https://docs.microsoft.com/en-us/sql/odbc/microsoft/microsoft-access-data-types?view=sql-server-2017.

 

The following table shows the Microsoft Access data types (Col 1), data types used to create tables (Col 2), and ODBC SQL data types (Col 3).

NUMBER (FieldSize= SINGLE)

SINGLE

SQL_REAL

NUMBER (FieldSize= DOUBLE)

DOUBLE

SQL_DOUBLE

NUMBER (FieldSize= BYTE)

UNSIGNED BYTE

SQL_TINYINT

NUMBER (FieldSize= INTEGER)

SHORT

SQL_SMALLINT

NUMBER (FieldSize= LONG INTEGER)

LONG

SQL_INTEGER

NUMERIC

NUMERIC

SQL_NUMERIC

 

From this it appears the Access datatype NUMBER would have to have a qualifier when declared and used to CREATE a table, in order to know to which datatype it would need to be converted when pulled from PG and inserted into Access.  But I certainly may not have understood your problem correctly.

 

HTH

Danny

 

-----Original Message-----
From: Tobias Wendorff <tobias.wendorff@tu-dortmund.de>
Sent: Sunday, May 27, 2018 11:36 AM
To: Jan Wieck <jan@wi3ck.info>
Cc: Inoue, Hiroshi <h-inoue@dream.email.ne.jp>; pgsql-odbc@lists.postgresql.org
Subject: Re: NUMERIC type makes trouble in MS Access

 

Am So, 27.05.2018, 05:18 schrieb Jan Wieck:

> Anything that is exact precision in the database should never be

> handled as "double" in any driver. That is a serious bug and a

> possible violation of accounting laws in many countries.

 

So SQL_NUMERIC is DOUBLE? Sorry, I'm not an insider ;)

 

Access supports DECIMAL file type with a range from -9.999... x 10^27 to +9.999... x 10^27 while DOUBLE goes from -1.797 x 10^308 to

1.797 x 10^308.

 

Actually, older Access had problems with DECIMAL fields in the past, maybe those got fixed already?

 

Best regards,

Tobias

 

 

pgsql-odbc by date:

Previous
From: "Tobias Wendorff"
Date:
Subject: Re: NUMERIC type makes trouble in MS Access
Next
From: "Tobias Wendorff"
Date:
Subject: RE: NUMERIC type makes trouble in MS Access