Thread: handling money type

handling money type

From
"padmanabha konkodi"
Date:
<p> hello developers,<br /><br /> i have facing one major problem handling sql money dataType in the java<br /><br /> i
havetried many permutation and combination but still i dint got correct data type to use in java to pass money data<br
/><br/><br /><a
href="http://adworks.rediff.com/cgi-bin/AdWorks/sigclick.cgi/www.rediff.com/signature-home.htm/1507191490@Middle5?PARTNER=3"><img
border="0"hspace="0"
src="http://adworks.rediff.com/cgi-bin/AdWorks/sigimpress.cgi/www.rediff.com/signature-home.htm/1963059423@Middle5?OAS_query=null&PARTNER=3"
vspace="0"/></a> 

Re: handling money type

From
Richard Huxton
Date:
padmanabha konkodi wrote:
> 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

Have you tried PG's "numeric" type? What problems did you encounter with it?

--   Richard Huxton  Archonet Ltd


Re: handling money type

From
"codeWarrior"
Date:
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