本文介绍了将XML文件传递给SQL存储过程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在SQL Server中编写了一个存储过程:


CREATE PROCEDURE InsertXML2 @xmlFile varchar(2000)AS

DECLARE @iTree int

SELECT *

来自OPENXML(@iTree,'n:Registration / nefaultEnrolment'',3)

WITH(

....



EXEC sp_xml_removedocument @iTree

GO


我怎样才能通过这个存储过程在VB.NET中的XML文件?


非常感谢

I Wrote a stored procedure in SQL Server:

CREATE PROCEDURE InsertXML2 @xmlFile varchar(2000) AS
DECLARE @iTree int
SELECT *
FROM OPENXML (@iTree, ''n:Registration/nefaultEnrolment'',3)
WITH (
....
)
EXEC sp_xml_removedocument @iTree
GO

How can I pass the XML file to this stored Procedure in VB.NET?

Thanks a lot

推荐答案




这篇关于将XML文件传递给SQL存储过程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 16:36