Re: handling money type

Поиск
Список
Период
Сортировка
От codeWarrior
Тема Re: handling money type
Дата
Msg-id djqru3$2ntj$1@news.hub.org
обсуждение исходный текст
Ответ на handling money type  ("padmanabha konkodi" <konkodi221@rediffmail.com>)
Список 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 по дате отправления:

Предыдущее
От: "Ing. Jhon Carrillo-Venezuela"
Дата:
Сообщение: unsuscribe
Следующее
От: Andrew Sullivan
Дата:
Сообщение: Re: why vacuum