Concurrency error que update

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for PostgreSQL
Post Reply
adolfofb
Posts: 1
Joined: Tue 20 Sep 2005 14:52

Concurrency error que update

Post by adolfofb » Tue 20 Sep 2005 14:55

Hi.

I get a concurrency error when I try to update with the PsqlDataAdapter if the original database row has a null value.

Help, please...

Yuri
Posts: 140
Joined: Mon 08 Nov 2004 12:07

Concurrency error que update

Post by Yuri » Thu 22 Sep 2005 08:16

Problem is that you try to use column name "user" without qouting symbols. "user" is PostgreSQL server keyword. You can solve this problem in to ways:
1) rename column user
2) set PgSqlCommandBuilder.Quoted property to true

Post Reply