Re: Query regarding Bind data type, precision, scale while using psqlodbc

From: Dave Cramer <davecramer(at)postgres(dot)rocks>
To: Abhishek Kumar <abhishek(dot)aak0(at)gmail(dot)com>
Cc: pgsql-odbc(at)lists(dot)postgresql(dot)org
Subject: Re: Query regarding Bind data type, precision, scale while using psqlodbc
Date: 2024-07-11 12:46:42
Message-ID: CADK3HHKcm-1NNDtjXjEjEqsLDQ0Uks0OoqkiJxubgr746jafJA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

On Thu, 11 Jul 2024 at 01:19, Abhishek Kumar <abhishek(dot)aak0(at)gmail(dot)com>
wrote:

> Hi,
>
> I am trying to use psqlodbc native driver with my ODBC application. While
> using this, SQLColumns API returns me the following information for the
> below Data types :
>
> 1. Decimal : datatype = 2, precision = 28, scale = 6
> 2. Numeric : datatype = 2, precision = 28, scale = 6
> 3. Money : datatype = 6, precision = 10, scale = 0
>

based on PostgreSQL: Documentation: 16: 8.1. Numeric Types
<https://www.postgresql.org/docs/current/datatype-numeric.html#DATATYPE-NUMERIC-TABLE>
it would appear the precision and scale for Decimal and Numeric are
incorrect.

As for Money. Just don't use it.

As for official documentation, there does not appear to be any.

Dave

>

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Dave Cramer 2024-07-11 12:54:31 Re: DataType bytea Precision returning a negative value
Previous Message Dave Cramer 2024-07-11 12:06:06 Re: Which version of psqlODBC should I install?