什么是准备好的陈述?
关系数据库上下文中的预准备语句是什么?它们有什么帮助?我什么时候应该考虑使用它们?
What are prepared statements in the context of relational databases? How do they help and when should I consider using them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
准备好的语句是由数据库预先解析的查询。您可以使用不同的参数值反复运行查询,而数据库不必每次都从头开始解析和规划查询。
当您需要多次运行相同的查询,并且只有一些数据不时变化时,可以使用它。
A prepared statement is a query that is pre-parsed by the database. You can run the query over and over with different parameter values without the database having to parse and plan the query from scratch each time.
You use it when you need to run the same query many times, with only some data varying from time to time.