Обсуждение: Enforcing CONCUR_*

Поиск
Список
Период
Сортировка

Enforcing CONCUR_*

От
Oliver Jowett
Дата:
I just noticed that CONCUR_READ_ONLY/CONCUR_UPDATEABLE are not enforced
by the driver -- you can update any resultset regardless of the
concurrency setting (assuming it meets the other requirements to be
updateable).

Should we be enforcing that the resultset must be CONCUR_UPDATABLE
before allowing update operations?

-O

Re: Enforcing CONCUR_*

От
Kris Jurka
Дата:

On Fri, 28 Jan 2005, Oliver Jowett wrote:

> Should we be enforcing that the resultset must be CONCUR_UPDATABLE
> before allowing update operations?
>

Yes.

Kris Jurka

Re: Enforcing CONCUR_*

От
Oliver Jowett
Дата:
Kris Jurka wrote:
> On Fri, 28 Jan 2005, Oliver Jowett wrote:
>
>>Should we be enforcing that the resultset must be CONCUR_UPDATABLE
>>before allowing update operations?
>
> Yes.

Ok, applied to CVS.

-O