简体   繁体   中英

How to determine in which line of the code a specific mysql table has been altered?

I have a code that I am working on . And its huuge really huge . Is there a way to understand by what line of my php code a specific mysql table has been altered ?

@user1413647 Your question seems to be inexplicit! In order to check the database processes U should look for the query statements within your php code.

If you want to know where in your code it changes something in your database, you have to read through your code - even if it is huge. There is no substitute.

You can accelerate the process by scanning for code that mentions the database name you are concerned about, or the table name or column name if you have that specific information.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM