Re: RE: [pgsql-es-ayuda] Parámetros por defecto

From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
To: Martin <redblood(at)gmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: RE: [pgsql-es-ayuda] Parámetros por defecto
Date: 2006-06-11 08:10:45
Message-ID: c2d9e70e0606110110p78a31ee3hddd2853cd9a264bd@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 6/10/06, Martin <redblood(at)gmail(dot)com> wrote:
> Aca les mando la definicion de unas de las tablas:
>
> Create table "Docentes"
> (
> "IdDocente" Serial NOT NULL UNIQUE,
> "DoCP" Char(15) NOT NULL Default '0',
> "DoNombre" Varchar NOT NULL Default 'nombre',
> "DoApellido" Varchar NOT NULL Default 'apellido',
> "DoDocumento" Integer NOT NULL Default 0,
> "DoTelefono" Char(20) NOT NULL Default '0',
> "DoMail" Varchar,
> "DoFechaBaja" Date,
> primary key ("IdDocente")
> );
>
>
> y aca un store:
>
> select * from "Docentes"
>
> create function altaDocentes(char(15), varchar, varchar, int,
> char(20), varchar, date) returns void as
> ' insert into "Docentes"("DoCP","DoNombre","DoApellido","DoDocumento","DoTelefono","DoMail","DoFechaBaja")
> values($1,$2,$3,$4,$5,$6,$7);
> ' language sql;
>

de hecho no estas insertando el valor por default, le estas indicando
al insert que vas a insertar en esos campos el valor especificado en
el parametro.

>
> Aun no encontramos la manera de pasar el valor default...., si pasamos
> NULL como parámetro inserta el valor NULL y si pasamos vacio ('') no
> pone nada...
>

eso es correcto, NULL no significa DEFAULT...

--
Atentamente,
Jaime Casanova

"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Cuenca 2006-06-11 08:43:08 Funcion con numero indefinido de devoluciones
Previous Message Linder Poclaba 2006-06-10 22:20:03 Re: Ayuda con trigger para delete.