Re: "money" binary representation - Mailing list pgsql-general

From Tom Lane
Subject Re: "money" binary representation
Date
Msg-id 2019.1258348237@sss.pgh.pa.us
Whole thread Raw
In response to "money" binary representation  (Konstantin Izmailov <pgfizm@gmail.com>)
List pgsql-general
Konstantin Izmailov <pgfizm@gmail.com> writes:
> I'm trying to read "money" field using PQgetvalue (PostgreSQL 8.3.7). The
> function returns 9 bytes, smth like 0h 0h 0h 0h 0h 0h 14h 0h 0h, for the
> value '$50.2'. I could not find description anywhere on how to convert the
> binary data into, for example, a double precision number.

> Would you please help me find a method of converting binary "money" data
> into a double precision?

It's a binary integer, either int4 or int8 depending on which PG version
you're working with, measured in pennies (or whatever the minimum unit
of your currency is).  So that should correspond to 5020.

            regards, tom lane

pgsql-general by date:

Previous
From: John R Pierce
Date:
Subject: Re: "money" binary representation
Next
From: Konstantin Izmailov
Date:
Subject: Re: "money" binary representation