Im using command builder to auto generate SQL statements and DataAdapter to fill DataSet Generally works well but now I have issue with Unique constraint on multiple columns
I have in DB (PostgreSQL) such unique index
CREATE UNIQUE INDEX idx_uniq ON table_1 (id,currency_id);
DataAdapter / CommandBuilder read this wrongly and set unique flag on each column separately (id & currency_id), instead use combination of both as unique.
I have huge impact on my app now - because I cant even fill dataset - because it says constrains are broken. Any way to force DA to read that correctly or remove those wrong constrains ?
I stuck with that since few hrs thus any help / tips will be highly appreciated ...
If this is a flaw in the command builder, your quickest resolution may be to remove the existing constraint and manually add a new one:
or just turn off constraints altogether:
but this may disable some constraints that you actually want (like foreign key constraints).