将数据表从 C# 传递到 Oracle 存储过程

发布于 2024-10-29 11:51:23 字数 39 浏览 1 评论 0原文

如何将数据表或数据集从 C# 传递到 Oracle 中的存储过程

How to pass a datatable or dataset from C# to the stored procedure in Oracle

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

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

发布评论

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

评论(3

素罗衫 2024-11-05 11:51:23

你不能直接。但是,有几种方法:

  • 将数据表/数据集转换为单个 XML 字符串或 blob,并将其用作存储过程的参数。

  • 使用临时表来存储数据表/数据集内容,以便存储过程可以处理它们。

You can not directly. However there are several approaches :

  • Transform your datatable/dataset to a single XML string or blob and use it as a parameter for a stored procedure.

  • Use temporary tables to store your datatable/dataset content, so a stored procedure can process them.

鸩远一方 2024-11-05 11:51:23

如果您有要插入到 ORACLE 中的数据集或数据表,则可以创建 ORACLE 数据适配器。然后创建一个用于插入的命令对象,并将 CommandType 设置为 StoredProcedure。然后,您可以使用数据适配器的更新命令,并将数据集或数据表作为参数。

像这样的事情:

OracleCommand cmdOra = new OracleCommand(StoredProcedureName, Connection);
cmdOra.CommandType = CommandType.StoredProcedure;
OracleDataAdapter da = new OracleDataAdapter();

da.InsertCommand = cmdOra;
da.Update(dsDataSet);

If you have a dataset or a datatable that you want to insert into ORACLE, you can create an ORACLE data adapter. Then you create a command object for insertion, and set the CommandType to StoredProcedure. You can then use the Update command of the data adapter, and have the dataset or datatable as parameter.

Something like this:

OracleCommand cmdOra = new OracleCommand(StoredProcedureName, Connection);
cmdOra.CommandType = CommandType.StoredProcedure;
OracleDataAdapter da = new OracleDataAdapter();

da.InsertCommand = cmdOra;
da.Update(dsDataSet);
情话墙 2024-11-05 11:51:23

完全不确定您想要做什么,尽管在 Oracle 中使用 Ref Cusors 可能会对您正在做的事情有所帮助。 PL/SQL 引用游标和 OracleRefCursor

将大量数据传递到 Oracle 的另一种方法是通过数组绑定: 将您的数组置于绑定中

Not sure what your trying to do entirely, though using Ref Cusors in Oracle may help with whatever you may be doing. PL/SQL REF CURSOR and OracleRefCursor

Another way to accomplish passing lots of data to Oracle is through array binding: Put Your Arrays in a Bind

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