Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
238 views
in Technique[技术] by (71.8m points)

php - When does mysqli_multi_query stop execution?

Suggested that we have this SQL text with 3 MySQL commands:

show tables;

some nonesense command which makes error;

show tables;

The first and third SQL are valid, the second isn't. So, when passing this SQL text to mysqli_multi_query, does MySQL stop execution at the second command (error one) or it tries to go on until the last command? Coz it is dangerous if those commands after the error one relies on the error one.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, if one query fails the rest will not be executed. See this comment over at the documentation for mysqli_multi_query, which makes this clear and also showcases one way to check for errors.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...