2009/6/2 Kees Nuyt :
> On Tue, 2 Jun 2009 10:35:12 -0300, Karl Brandt
> wrote:
>>
>>Let me explain the complete picture so someone can help me.
>>
>>I develop a wrapper around sqlite that tracks the changed records and
>>than save the changes to the database by building and executing a SQL
>>query
On Tue, 2 Jun 2009 10:35:12 -0300, Karl Brandt
wrote:
>2009/6/2 J. King
>>
>> On Tue, 02 Jun 2009 07:40:01 -0400, Karl Brandt
>> wrote:
>>
>> > I'm trying to set the conflict resolution of an entire transaction by
>> > using the ON CONFLICT clause without success.
>> >
>> > [...]
>> >
>> > Is t
2009/6/2 J. King
>
> On Tue, 02 Jun 2009 07:40:01 -0400, Karl Brandt
> wrote:
>
> > I'm trying to set the conflict resolution of an entire transaction by
> > using the ON CONFLICT clause without success.
> >
> > [...]
> >
> > Is there a way to set the conflict resolution for an entire transaction
On Tue, 02 Jun 2009 07:40:01 -0400, Karl Brandt
wrote:
> I'm trying to set the conflict resolution of an entire transaction by
> using the ON CONFLICT clause without success.
>
> [...]
>
> Is there a way to set the conflict resolution for an entire transaction?
Such a thing is not possible. Y
On Tue, 2 Jun 2009 08:40:01 -0300, Karl Brandt
wrote:
>I'm trying to set the conflict resolution of an entire transaction by
>using the ON CONFLICT clause without success.
>
>I'm using the following syntax:
>
>BEGIN ON CONFLICT ROLLBACK;
>INSERT INTO TableX (Id) Values (1);
>INSERT INTO TableX (I
I'm trying to set the conflict resolution of an entire transaction by
using the ON CONFLICT clause without success.
I'm using the following syntax:
BEGIN ON CONFLICT ROLLBACK;
INSERT INTO TableX (Id) Values (1);
INSERT INTO TableX (Id) Values (2);
INSERT INTO TableX (Id) Values (3);
COMMIT;
But
6 matches
Mail list logo