oracle中绑定变量?

发布于 2024-10-08 05:23:27 字数 91 浏览 2 评论 0原文

我开始使用 Oracle DB,并且要求我在我的应用程序中使用绑定变量。有人可以给出一些简短的指导,绑定变量的优势是什么以及我何时应该使用它们?

谢谢!

I'm starting to work with Oracle DB, and I'm demanded to use bind variables in my app. Can someone give some brief directions what's bind variables advantage and when should i use them ?

Thanks!

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

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

发布评论

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

评论(4

小帐篷 2024-10-15 05:23:27

这是一篇非常好的文章,其中整合了有关 Bind 的大量信息Oracle 中的变量。

本文末尾引用的 Tom Kyte 的解释链接已损坏,但可以在 询问 Tom:如何使用绑定变量 链接

如果您将 .NET 与 Oracle 结合使用,可以查看如何使用绑定变量的代码示例找到此处

This is a very good article that consolidates a lot of information about Bind Variables in Oracle.

The link to the explanation by Tom Kyte referenced at the end of this article is broken but it can be found at Ask Tom : How To Use Bind Variables link instead

In case you are using .NET with Oracle, a code example of how to use Bind Variables can be found here

暗喜 2024-10-15 05:23:27

使用绑定变量的一大优点是您可以编写 Oracle 已经可以预编译的完整语句。换句话说,它不需要仅仅因为您正在寻找值 1 而不是 100 而再次重新解析该语句。绑定变量或多或少是一个占位符。

The big advantage of using bind variables is that you can write a full statement that Oracle can pre-compile already. In other words it doesn't need to re-parse the statement again just because you're looking for value 1 instead of 100. A bind variable more or less is a place-holder.

凉城凉梦凉人心 2024-10-15 05:23:27

绑定变量也非常适合抵御 sql 注入! :)

Bind variables are also great against sql injection! :)

仅冇旳回忆 2024-10-15 05:23:27

使用 Oracle DB 中的绑定变量构建的应用程序提高了查询的整体性能,因为它的值不占用 Oracle 数据库中的存储

The app built using bind variable in Oracle DB improves overall performance of query because it's value doesn't occupy storage in Oracle database

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