Re: handling money type - Mailing list pgsql-sql

From codeWarrior
Subject Re: handling money type
Date
Msg-id djqru3$2ntj$1@news.hub.org
Whole thread Raw
In response to handling money type  ("padmanabha konkodi" <konkodi221@rediffmail.com>)
List 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@rediffmail.com> wrote in message 
news:20051027060554.19450.qmail@webmail49.rediffmail.com...
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







pgsql-sql by date:

Previous
From: "Ing. Jhon Carrillo-Venezuela"
Date:
Subject: unsuscribe
Next
From: Andrew Sullivan
Date:
Subject: Re: why vacuum