|
|
| · · · · · · · | |
|
Re: pgadmin III crashes when inserting a row (1.6.2 and 1.6.3)
Thank you for your post Dave. To answer your questions, the encoding is SQL_ASCII. Here are the database and table definitions as well as the table's contents: CREATE DATABASE "Scrip" WITH OWNER = postgres ENCODING = 'SQL_ASCII' TABLESPACE = pg_default; CREATE TABLE "organization" ( "name" character varying(50) NOT NULL, "campus" character varying(50) NOT NULL, CONSTRAINT "organization_pkey" PRIMARY KEY ("name", "campus") ) The table contents are ascii (as seen from the pgadmin III Edit Data): name campus ------------------------------------------------------------------- Heritage Christian School Grammar Heritage Christian School Logic and Rhetoric test test2 HOWEVER, when I use the option to type in a query (pgAdmin III Query), I can see that it is pointing to the correct database (Scrip on localhost:5432) but "select * from organization" returns the following error: ERROR: relation "organization" does not exist SQL state: 42P01 So I have to conclude that it cannot see the table (perhaps not even the database). When I add a row through the Edit Data window, I type text in the first column and then text in the second column. When I hit return, it thinks for a little bit and then crashes. Can you tell me why the select query failed and yet I was able to add fourth row through the Edit Data window? Regards, Jeanie On 3/30/07, Dave Page <dpage(at)postgresql(dot)org> wrote: jeanie(dot)schwenk(at)gmail(dot)com wrote: >>From reading the posts, this has occurred in past releases as well.
|