MySQL Forums
Forum List  »  General

Re: MySql Trigger to RabbitMQ Communication
Posted by: Peter Brawley
Date: June 28, 2022 09:05AM

A MySQL Trigger can't do that. MySQL isn't designed to mesh with Windows spaghetti; it's designed to be an RDBMS and only an RDBMS.

But MySQL is open source, so there's a more difficult and perhaps hair-raising way to get round its insularity: add to your MySQL server a custom native function or a loadable function that a Trigger could invoke---see https://dev.mysql.com/doc/extending-mysql/8.0/en/adding-functions.html.

More traditionally and safely ... implement the desired communication functionality at the app level.

Options: ReplyQuote


Subject
Written By
Posted
Re: MySql Trigger to RabbitMQ Communication
June 28, 2022 09:05AM


Sorry, only registered users may post in this forum.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.