Justin Cooney
Web Development Tips and Examples
Category: XML
-
This error showed up on a stored procedure that I was trying to execute from an ASP.NET Web page. The strange part was that I could execute the stored procedure directly from SSMS without any problems. The procedure was very simple in its design, but the database I was working in was new to me…
-
Sometimes while developing a tool, a developer needs to pass a list of values with a variable size to their database. There are several ways of doing so, one of which involves passing the list in XML format. The introduction of SQL Server 2005 offered the use of XML datatypes, which had not existed in…
-
If you are working with XML data types in your .NET and SQL Server code, then you will most likely encounter this error message at some point. Specifically, this error is related to improperly passing an XML value as a SQLParameter to your database. Since most of the work one does with XML in .NET…