-1

I would like to know if theres a database event listeners in the Database.

I know we can write triggers are various levels.

But was wondering weather there are any process for listeners.

Triggers are picked up by the database. HOW its done is there a continuous trigger listening process running behind in database?

Thanks.

1 Answers1

0

listeners gets activated when following things takes place:

  1. Insert
  2. Update
  3. Delete

This commands activates the listeners.

Lolwa
  • 24
  • 3
  • this is wrong. Triggers and listener have a clear meaning in the context of an oracle database, and there will no listeners be activated.But I have to admit that I do not understand the question that was posted. Maybe you are talking about [event listeners](https://docs.oracle.com/javase/tutorial/uiswing/events/intro.html) as they are known in Java or a similar thing. But then this must be made clear in the question and the answer. – miracle173 Aug 05 '17 at 19:26