Question:What is the benefit of using preparing statement?
Answer It is useful when we need to repeatedly execute the query with iteration using different parameters. Prepared statement: 1. Significantly lower cost of overhead 2. Fewer lines of code.
+ Report
What is the benefit of using preparing statement?