Is it possible to capture an insert event from an Orcale DB?

  • Thread starter Thread starter Juan
  • Start date Start date
J

Juan

I need to do some processing from my app after a row is inserted in an
Orcale db, how can i do that?

Thanks,
Juan.
 
Is this row being inserted from within your app? If so, you can check for
row being inserted, and process from within the app.

If you want the app to process the row insertion regardless of how the row
is inserted, you could write a trigger that invokes your app.
 
Manohar,

Is the second case, where can i find information on how to write that
trigger (it will have to invoque a method in a c# application, is that
possible?)...

Thanks for the advice.
 
That would be out of scope of this newsgroup -- you will have to consult
Oracle books/technical info.
 
Back
Top