BUG #4652: .net upate

Поиск
Список
Период
Сортировка
От carl baptista
Тема BUG #4652: .net upate
Дата
Msg-id 200902131230.n1DCUmgP086155@wwwmaster.postgresql.org
обсуждение исходный текст
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      4652
Logged by:          carl baptista
Email address:      carl@multimax.co.za
PostgreSQL version: 8.3
Operating system:   win xp
Description:        .net upate
Details:

hi,

I have included the Npgsql dll in my c# webservice.

I am trying to update a table via a dataset, using the following code:

NpgsqlDataAdapter L_Adapter = new NpgsqlDataAdapter(Qry, L_Conn);
try
{
L_Adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
NpgsqlCommandBuilder L_CmndBuilder = new NpgsqlCommandBuilder(L_Adapter);
return L_Adapter.Update(inDataTable);
}
finally
{
L_Conn.Close();
L_Conn.Dispose();
}

when I use this code to perform an update, it returns a count indicating
that it was successful, but when the data is scrutinised, it turns out that
the update failed. When I perform a delete using this code, I get the
following error:

Concurrency violation: the DeleteCommand affected 0 of the expected 1
records.

Please could you show mw what I'm doing wrong here, or where I could get a
patch to fix this if it is a bug.

Thanks
Carl

В списке pgsql-bugs по дате отправления:

Предыдущее
От: "Nitin"
Дата:
Сообщение: BUG #4651: Postgresql connection error with PHP 5.
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: BUG #4651: Postgresql connection error with PHP 5.