Re: BIG BUG in Deleting detali records
- From: "Kevin Frevert" <kevin@xxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Wed, 23 May 2007 11:38:21 -0500
In your example...
adodataset2.First();
while not adodataset2.bof do
adodataset2.Delete;
You will need to call..
adodataset2.UpdateBatch();
ex..
adodataset2.First();
while not adodataset2.bof do
adodataset2.Delete;
adodataset2.UpdateBatch();
krf
"Cavalera Guido" <cavaleraguido@xxxxxxxxxxxx> wrote in message
news:465465b0$1@xxxxxxxxxxxxxxxxxxxxxxxxx
Excuse me can u try to compile this code ? use a msAccess database and
two tables without relation ... you can see that detail records dont be
removed from the database ..
.
- Follow-Ups:
- Re: BIG BUG in Deleting detali records
- From: Cavalera Guido
- Re: BIG BUG in Deleting detali records
- References:
- BIG BUG in Deleting detali records
- From: Cavalera Guido
- Re: BIG BUG in Deleting detali records
- From: Brian Bushay TeamB
- Re: BIG BUG in Deleting detali records
- From: Cavalera Guido
- Re: BIG BUG in Deleting detali records
- From: Cavalera Guido
- Re: BIG BUG in Deleting detali records
- From: Kevin Frevert
- Re: BIG BUG in Deleting detali records
- From: Cavalera Guido
- Re: BIG BUG in Deleting detali records
- From: Kevin Frevert
- Re: BIG BUG in Deleting detali records
- From: Cavalera Guido
- BIG BUG in Deleting detali records
- Prev by Date: Re: ADO is a BUG
- Next by Date: Re: BIG BUG in Deleting detali records
- Previous by thread: Re: BIG BUG in Deleting detali records
- Next by thread: Re: BIG BUG in Deleting detali records
- Index(es):
Relevant Pages
|