Re: Unsigned numbers

From: Richard Huxton <dev(at)archonet(dot)com>
To: Kaloyan Iliev Iliev <news1(at)faith(dot)digsys(dot)bg>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Unsigned numbers
Date: 2003-11-26 11:46:08
Message-ID: 200311261146.08737.dev@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Wednesday 26 November 2003 11:10, Kaloyan Iliev Iliev wrote:
> Hello Friends,
>
> I have the following questions.
> I have a lot of fields in my database that are int or float.
> The problem is that I need them to be only positive (unsigned) and the
> users try to insert sometimes negative.
[snip - problem is that errors give constraint name]

> Are there any unsigned data types like unsigned int or unsigned float.
> Can I make a domain or something like that (How exactly to add
> constraint to domain).
> I am using v7.3.2.

Adding CHECKs to domains is new for 7.4, I believe. There aren't any built-in
unsigned types, although in theory you could write your own.

What I do is format my constraint names in a known way. So, a check on table
foo, column bar might be called "foo_bar_positive" - then I can get the
information I want from the constraint name.

--
Richard Huxton
Archonet Ltd

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Clint Stotesbery 2003-11-26 11:51:42 trigger conversion advice needed
Previous Message Kaloyan Iliev Iliev 2003-11-26 11:10:30 Unsigned numbers