Re: handling money type

From: "codeWarrior" <gpatnude(at)hotmail(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: handling money type
Date: 2005-10-27 15:34:06
Message-ID: djqru3$2ntj$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The SQL data type "money" in postgreSQL was deprecated several versions
ago... however -- it is still available in the system. The definitions is:

CREATE TYPE money
(INPUT=cash_in, OUTPUT=cash_out, DEFAULT='',
INTERNALLENGTH=4, ALIGNMENT=int4, STORAGE=PLAIN);
ALTER TYPE money OWNER TO postgres;
COMMENT ON TYPE money IS 'monetary amounts, $d,ddd.cc';

8.2. Monetary Types
Note
The money type is deprecated. Use numeric or decimal instead, in combination
with the to_char function.
The money type stores a currency amount with a fixed fractional precision;
see Table 8.3, "Monetary Types". Input is accepted in a variety of formats,
including integer and floating-point literals, as well as "typical" currency
formatting, such as '$1,000.00'. Output is generally in the latter form but
depends on the locale.
When you "SELECT money('1000');"

the type cast returns: $1,000.00

HTH...

""padmanabha konkodi"" <konkodi221(at)rediffmail(dot)com> wrote in message
news:20051027060554(dot)19450(dot)qmail(at)webmail49(dot)rediffmail(dot)com(dot)(dot)(dot)
hello developers,

i have facing one major problem handling sql money dataType in the java

i have tried many permutation and combination but still i dint got correct
data type to use in java to pass money data

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Christian Paul B. Cosinas 2005-10-27 15:45:05 Re: How to speed up the database query?
Previous Message Ing. Jhon Carrillo-Venezuela 2005-10-27 14:29:51 unsuscribe