DB table hook/callback

2009-11-16 Thread Ishwor Gurung
Hi folks, Is there any way in Django to have a global hook (not Python hook, an architecture hook rather :-) on a database table? I want to get notifications in my django layer of changes in DB i.e. whenever theres an update/delete. Is this feasible or am I heading the wrong way? The doc[1] says

Re: DB table hook/callback

2009-11-16 Thread Andy McKay
On 09-11-16 9:01 PM, Ishwor Gurung wrote: > "Django includes a “signal dispatcher” which helps allow decoupled > applications get notified when actions occur elsewhere in the > framework." The word "framework" is I think the key here. Right? Correct, signals won't help spot changes in the database

Re: DB table hook/callback

2009-11-17 Thread Ishwor Gurung
Andy, Hi. 2009/11/17 Andy McKay : > On 09-11-16 9:01 PM, Ishwor Gurung wrote: >> "Django includes a “signal dispatcher” which helps allow decoupled >> applications get notified when actions occur elsewhere in the >> framework." The word "framework" is I think the key here. Right? > > Correct, sign