[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Adam Tarkowski

12/27/2005 9:37:00 PM

I have a question about deleting many ros at one time

I want to know which methods and in which order are called when i select
many rows on a grid and i delete them

In x++ language guide is only written how methods are called when you delete
one row but nothing about many

Can someone help, urgent


1 Answer

Necmi Göcek

12/28/2005 9:08:00 AM

0

Sequence:
When you delete a record from a form, the following sequence of events occurs:

delete on the data source is executed.
validateDelete on the data source is executed. If validateDelete returns
true ...
validateDelete on the table is executed. If validateDelete returns true...
The record is then re-read from the database by the kernel. Unless the
record is deleted or updated by another user, then...
delete on the table is executed.

The sequence of delete events don't depend on number of records you deleted.

Note : I
--
_MIB_


"Adam Tarkowski" wrote:

> I have a question about deleting many ros at one time
>
> I want to know which methods and in which order are called when i select
> many rows on a grid and i delete them
>
> In x++ language guide is only written how methods are called when you delete
> one row but nothing about many
>
> Can someone help, urgent
>
>
>