PostgreSQL:我的C(libpq)程序如何检测哪个表约束触发了错误?

时间:2018-08-02 23:07:14

标签: c postgresql libpq

我正在尝试以编程方式将大型数据集从旧的MySQL数据库迁移到PostgreSQL。源数据很乱,所以我的pgsql表有很多约束来捕获输入的不良数据。

当插入由于这些约束之一而失败时,我的C程序如何发现哪个约束阻止了插入?

例如,一个较简单的表如下所示:

create table glue (
    product_id int not null references product(id),
    history_id int not null references history(id),
    constraint glue_idx unique (product_id,history_id)
);

现在,我的程序最终执行了触发条件之一的插入操作,PQresultStatus仅告诉我PGRES_FATAL_ERROR,而PQerrorMessage告诉我:

ERROR:  duplicate key value violates unique constraint "glue_idx"
DETAIL:  Key (product_id, history_id)=(413, 1762) already exists.

一个人对我来说完全可读。我的问题是,我的C程序如何辨别该错误是由gum_idx约束捕获的?

1 个答案:

答案 0 :(得分:2)

使用功能

char *PQresultErrorField(const PGresult *res, int fieldcode)

根据fieldcode返回详细信息。可能的代码之一是PG_DIAG_CONSTRAINT_NAME

the documentation.

中找到功能描述