为什么要避免动态 SQL 查询?有什么建议可以删除坏部分并使用它们吗?

发布于 2024-11-15 10:47:48 字数 60 浏览 2 评论 0原文

您能指导一下为什么建议避免使用动态 SQL 吗?有什么方法可以让我继续使用动态 SQL 并避免它的坏处吗?

Can you please guide me why dynamic SQL is suggested to avoid ? Is there any way that I can keep on using dynamic SQL and avoid its bad things ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

提赋 2024-11-22 10:47:48

http://www.sommarskog.se/dynamic_sql.html

如果您不明白其中的所有内容这个,回来问一个问题,但是在任何情况下你都不应该使用动态SQl,除非你理解了这篇文章。

http://www.sommarskog.se/dynamic_sql.html

If you don't understand everything in this, come back and ask a question, but under no circustances should you use dynamic SQl until you understand this article.

朮生 2024-11-22 10:47:48

主要问题是sql注入。人们可以输入可以改变 sql 意图的数据。

最好的解决方案之一是使用 sp_executesql。 http://msdn.microsoft.com/en-us/library/ms188001.aspx

The main problem is sql injection. People can enter data that can change the intent of your sql.

One of the best solutions is to use sp_executesql. http://msdn.microsoft.com/en-us/library/ms188001.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文