FOr some reason i can't insert anything into my postgres db via the command line psql tool or via the webbased pgadmin.
I'm getting the following error:
"PostgreSQL said: ERROR: Relation '""category_id_seq""' does not exist
Your query:
INSERT INTO "category" ("id", "title") VALUES (NEXTVAL('"""category_id_seq"""'::text), 'fff')"
I know for a fact that the category_id_seq exists and the user I'm using to insert the row with a user that has priviledges to the table.
This happens on any table in the database. I"ve searched google, but can't find any mention of this problem.
I'm getting the following error:
"PostgreSQL said: ERROR: Relation '""category_id_seq""' does not exist
Your query:
INSERT INTO "category" ("id", "title") VALUES (NEXTVAL('"""category_id_seq"""'::text), 'fff')"
I know for a fact that the category_id_seq exists and the user I'm using to insert the row with a user that has priviledges to the table.
This happens on any table in the database. I"ve searched google, but can't find any mention of this problem.