query of deleted enterees ?!

totolkhan

Registered User.
Local time
Today, 10:58
Joined
May 23, 2005
Messages
30
how can i have a query of deleted enterees ?!
 
Can you expand on your question? It's too vague.
 
for example we have 3 enterees

Id Name Last name tel tel2
1 MEHEAD STEINBERG 4074912 4084545
2 JOHN ...... ........ ...
3 MICHEL .. .. ..


IF WE DELETE 3 DATA FROM DATABASE IT WILL BE :

Id Name Last name tel tel2
1 MEHEAD STEINBERG 4074912 4084545
2 JOHN ...... ........ ...

I WANT TO SEE WHAT DATAS DELETED !


Id Name Last name tel tel2
3 MICHEL .. .. ..

HOW CAN I DO IT ?
 
If you delete it then it's gone and you can't view it.

Rather than delete it, however, you can put an extra field in as a flag - a date field, preferably, which - rather than delete - you update to the value of the function Now(). Thus, when querying you can determine what has been "deleted" by using the Is Not Null clause in the criteria.
 
I certainly can't think of an easier way since you are talking about returning a list of records that you have physically deleted i.e. are not there anymore to be queried
 
thanks alot for helping ,
i'm working on it !
isn't there any sample project ! ?
 

Users who are viewing this thread

Back
Top Bottom