From: | rvc <infostarsev(at)gmail(dot)com> |
---|---|
To: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | ayuda Zeos y postgres II |
Date: | 2007-03-31 08:51:59 |
Message-ID: | 7b4c59550703310151s1c4319cdk5cb971aa90bbf4e8@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Ante todo Gracias a todos por ayudar en la medida de lo posible. Como ya
sabeis soy nuevo en esto, jejejejejejejeje como muchos por aqui.
Bueno la cuestion es la siguiente yo tengo definida una tabla con los
siguientes valores:
CREATE TABLE importacion
(
id_importacion serial NOT NULL,
orden character varying(40),
operacion integer,
descripcion character varying(40),
material character varying(40),
tmaterial character varying(40),
puesto character varying(40),
centro character varying(40),
cantidad character varying(40),
preparaciont character varying(40),
tratamientot character varying(5),
importacion integer
)
WITHOUT OIDS;
ALTER TABLE importacion OWNER TO postgres;
Cuando intento agregar un registro hago lo siguiente(OJO Uso delphi 7 + Zeos
6.6.0 - beta):
Dat.Secuencia.SequenceName:='importacion_id_importacion_seq';
Dat.IMPORTACION.Append;
Dat.IMPORTACION.FieldByName('ID_IMPORTACION').AsInteger:=
Dat.Secuencia.GetNextValue;
Dat.IMPORTACION.FieldByName('ORDEN').AsString:=Campo[1];
Dat.IMPORTACION.FieldByName ('OPERACION').AsString:=Campo[2];
Dat.IMPORTACION.FieldByName('DESCRIPCION').AsString:=Campo[3];
Dat.IMPORTACION.FieldByName('MATERIAL').AsString:=Campo[4];
Dat.IMPORTACION.FieldByName ('TMATERIAL').AsString:=Campo[5];
Dat.IMPORTACION.FieldByName('PUESTO').AsString:=Campo[6];
Dat.IMPORTACION.FieldByName('CENTRO').AsString:=Campo[7];
Dat.IMPORTACION.FieldByName ('CANTIDAD').AsString:=Str2;
Dat.IMPORTACION.FieldByName('PREPARACIONT').AsString:=Campo[9];
Dat.IMPORTACION.FieldByName('TRATAMIENTOT').AsString:=Campo[10];
Dat.IMPORTACION.Post;
y no se por que regla de 3 me da el siguiente error:
SQL Error: ERROR:column "importacion" of relation "importacion" does not
exist
Alguna Idea??????
Gracias de ante mano
From | Date | Subject | |
---|---|---|---|
Next Message | Juan Martínez | 2007-03-31 09:07:43 | Re: ayuda Zeos y postgres II |
Previous Message | Juan Martínez | 2007-03-31 08:46:45 | Re: Sentencia SQL para dos registros por grupo |