I want to know that in mysql when I create any procedure or function an entry for the corresponding create gets an entry in the mysql.proc table. I want to know by which process or trigger in mysql , It gets updated.
Thanks,
Nitesh Kumar
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The tables in the mysql database aren’t tables in the sense that your application tables are. Instead, they’re internal mysql software data structures that happen to be made visible to the outside world as if they were tables.
So, the processes by which rows are made visible in those tables are entirely internal to the logic of mysqld.