Re: insert and heritage... ooops... solved

Поиск
Список
Период
Сортировка
От stephane parenton
Тема Re: insert and heritage... ooops... solved
Дата
Msg-id 3F3F7C00.2050505@parenton.com
обсуждение исходный текст
Ответ на Re: insert and heritage...  (stephane parenton <stephane@parenton.com>)
Список pgsql-general
stephane parenton a écrit:

> hi Len,
>
> Len Morgan a écrit:
>
>> the next problem concerns the insert :
>>
>> INSERT INTO postetravail
>> (administrable,adresseip,adressemac,etat,nom) VALUES
>> ('false','192.168.0.2','FF:EE:DD:CC:BB:AB','1','big')\g
>> ERROR:  value too long for type character(1)
>>
>> Administrable is defined as char (i.e., length of one) and 'false' is 5
>> characters.  You probably want type Boolean instead of character.
>>
>>
> CREATE TABLE postetravail (
>    nom character(1)
> )
> INHERITS (equipements);

hemmmmmmm.... let's say i'd better read my scripts before posting !!!!!!
if i tell the name to be stored only with char(1), it won't fit my needs
when i try to enter a longer name.... ;-)

sorry !!!! my fault !

Stephane



В списке pgsql-general по дате отправления:

Предыдущее
От: stephane parenton
Дата:
Сообщение: Re: insert and heritage...
Следующее
От: Jason Godden
Дата:
Сообщение: C vs plpgsql and child processes