I start with the topic of triggers and I would like to know if it is possible to create one that sends messages to the cell phone.
The question has already been answered by @Michel Escalante Álvarez.
Thank you very much !!!
I start with the topic of triggers and I would like to know if it is possible to create one that sends messages to the cell phone.
The question has already been answered by @Michel Escalante Álvarez.
Thank you very much !!!
I do not think you can do what you want with triggers, or at least not directly from the database. In any case, you can create a trigger that reacts to a specific event in the database (for example, when inserting a new row in a certain table). Then, there must be some mechanism that "listens" to the message sent by the trigger (say, for example, a web application in PHP connected to said DB) and is able to take the necessary actions to send a notification to your cellphone through the network . That is the abstract idea of how you can achieve what you want, however implementation varies depending on the technology you choose to implement this. Greetings