Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

sql - detect mysql errors without executing it

Suppose I make a query "UPDATE table SET etc etc"

Then I "Execute" this query

if the query is fine, it executes and if the query has errors, it will return mysql errors

My question is...is there a way to do the following:

if the query has errors, it will return mysql errors. However, if the query is fine, DON'T execute and instead just say that the query is fine

In other words, is there a way to check that mysql will accept my query WITHOUT actually modifying the entries in the database in the event that there is no error?

See Question&Answers more detail:os

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

1 Reply

0 votes
by (71.8m points)

EXPLAIN does the trick if you're running MySQL 5.6 or greater.

explain update whatever;

If the query is ok, it shows the execution plan. Else, it returns the syntax error.


If you're running a lesser version of MySQL, I see a few options:

  1. The recommended option: Have a test database ready that mirrors your production database at least in structure. Ideally have it populated with test data to verify the query is not only syntactically correct; but that it works as expected.
  2. Run the query in the scope of a TRANSACTION that is immediately rolled back.
  3. Run a version of the query that is slightly modified to match NO ROWS.

For instance:

update table set col1 = @val1 where col2 = @val2;

Becomes:

update table set col1 = @val1 where (col2 = @val2) and 1=0;

So, if you're running 5.6 or greater, the EXPLAIN trick is neat. If not, options 2 and 3 from list are also neat(ish) tricks. But, you should generally be hitting a development server with your in-development queries anyway.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...