I can get event in mysql by
SHOW EVENTS LIKE 'e29'
but it is giving all information. it is like
select * from ....
My need is that i want to get the STATUS
of a particular event
I can get event in mysql by
SHOW EVENTS LIKE 'e29'
but it is giving all information. it is like
select * from ....
My need is that i want to get the STATUS
of a particular event
Copyright © 2021 Jogjafile Inc.
Show events
is not a regular statement that returns acursor
to read on.You have to query
information_schema.events
to knowstatus
of anevent
.