real_escape_string vs. prepared statements

前端 未结 1 508
慢半拍i
慢半拍i 2020-12-22 04:50

is there any reason to use one over the other in terms of speed and safety? Thanks!

相关标签:
1条回答
  • 2020-12-22 05:22

    Speed:

    • When you use bind parameters you can reuse the same query and query plan, just changing the parameters. When you build a query from strings the database has to reparse the statement.
    • With bind parameters the SQL parser also has less work to do. The parameters aren't escaped so the parsing is simpler.

    Safety:

    • In my opinion, it is much easier to remember to use parameters than to remember to escape strings.
    0 讨论(0)
提交回复
热议问题