vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| pgAdmin ver. 1.3.0 (Jan 14 2005) Windows XP SP2 When creating new table via 'New Table' dialog I've got error: XRC resource 'frmHint' (class 'wxDialog') not found! (and pgAdmin freezes) but via SQL query tool it works fine. Here is table definition: CREATE TABLE info ( version varchar(50) NOT NULL, creationtstamptz timestamptz NOT NULL DEFAULT now() ) WITHOUT OIDS; There is another problem, I cannot insert rows via Edit Data grid in info table. Virgil Frum ---------------------------(end of broadcast)--------------------------- TIP 4: Don't 'kill -9' the postmaster |
| ||||
| Virgil Frum wrote: > pgAdmin ver. 1.3.0 (Jan 14 2005) > Windows XP SP2 > > When creating new table via 'New Table' dialog I've got error: > XRC resource 'frmHint' (class 'wxDialog') not found! (and pgAdmin freezes) > but via SQL query tool it works fine. > > Here is table definition: > CREATE TABLE info > ( > version varchar(50) NOT NULL, > creationtstamptz timestamptz NOT NULL DEFAULT now() > ) WITHOUT OIDS; > > There is another problem, I cannot insert rows via Edit Data grid in > info table. Both problems result from the missing primary key. The latter is well documented (FAQ, rank 1) Regards, Andreas ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings |