在 Android 上使用 SQLite 绑定变量
在 Android 上使用 SQLite 时使用绑定变量是否会提高性能? SQLite 能否重用已解析的查询(如 Oracle 那样)从而节省 SQL 解析时间?
谢谢。
亚历克斯
Is there a performance gain when using bind variables when working with SQLite on Android?
Can SQLite reuse parsed queries (like Oracle does) and thus save the SQL parsing time?
Thanks.
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,SQLite 中的绑定变量将为您带来性能提升,因为您可以一次性准备/编译语句,然后在选择/插入/更新的每次迭代中将其与绑定变量一起重新使用。
Yes, binding variables in SQLite will give you a performance boost, as you can prepare/compile the statement a single time, then re-use it with bound variables in each iteration of your select/insert/update.