Answer the question
In order to leave comments, you need to log in
Problem with prepared statements in PostgreSQL. How to fix?
There is a request:
INSERT INTO
"control-question"
(control_id,question_id)
VALUES
(:control_id0,:question_id0),(:control_id1,:question_id1)
EXCEPT
(SELECT
control_id,question_id
FROM
"control-question")
RETURNING
question_id
INSERT INTO
"control-question"
(control_id,question_id)
VALUES
(28,8),(28,9)
EXCEPT
(SELECT
control_id,question_id
FROM
"control-question")
RETURNING
question_id
Answer the question
In order to leave comments, you need to log in
What error does the DBMS return?
If you get at least the error code, you can guess what the problem is.
www.postgresql.org/docs/9.3/static/errcodes-append...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question