From: | "Alejandro Michelin Salomon \( Adinet \)" <alejmsg(at)adinet(dot)com(dot)uy> |
---|---|
To: | "Pgadmin-Support" <pgadmin-support(at)postgresql(dot)org> |
Subject: | PG Admin III crash when inserting row in view window |
Date: | 2006-11-08 20:55:39 |
Message-ID: | !~!UENERkVCMDkAAQACAAAAAAAAAAAAAAAAABgAAAAAAAAAhx491Ki2tUS42D/aMPFg1MKAAAAQAAAAVaW8R/+iBEqTNFkfiM/K7QEAAAAA@adinet.com.uy |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-support |
Hi :
Plataform : windows XP SP2.
Language : Englihs
Installation Binary, from windows installer ( Downloaded file
pgadmin3-1.6.0-beta3.zip )
Vercion : 1.6 Beta 3 ( Oct 12 2006, rev: 5475 )
Problem :
I has a table width 5 fields.
-- hd_tecnicos
CREATE SEQUENCE hd_tecnicos_idtecnico_seq;
CREATE TABLE hd_tecnicos
(
idtecnico int4 NOT NULL DEFAULT
nextval('hd_tecnicos_idtecnico_seq'::text),
idempresa int4 NOT NULL DEFAULT 0,
ativo int2 NOT NULL DEFAULT 0,
idusuario int4 NOT NULL DEFAULT 0, -- Usuário do sistema.
idpessoa int4 NOT NULL DEFAULT 0, -- Número pessoa para poder criar as
contas a pagar.
CONSTRAINT hd_tecnicos_PK PRIMARY KEY (idempresa, idusuario)
)
WITHOUT OIDS;
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 1);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 2);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 3);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 4);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 5);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 6);
INSERT INTO hd_tecnicos( idempresa, ativo, idusuario ) VALUES ( 1, 1, 9);
This table has 7 records.
I open the view window. To see the rows from hd_tecnicos.
I the row mark as '*' i type :
Value 1 for idempresa, value 1 for ativo, value 13 for idusuario.
Note :
For the colummn idtecnico i dont fill width data becouse the
nextval('hd_tecnicos_idtecnico_seq'::text) has to get the
next valueand fill them.
When i am in the column idusuario and press enter pgadmin crashes.
I dont have a error reporting becouse is a binary installation.
Alejandro Michelin Salomon.
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2006-11-09 09:13:34 | Re: PG Admin III crash when inserting row in view |
Previous Message | Erwin Brandstetter | 2006-11-08 18:23:03 | edit grid: issues involving marking, selecting, inserting, undoing |