I am calling a stored procedure on sql server like this:
SqlConnection conn = new SqlConnection();
SqlCommand cmd;
XmlDocument xmlDocument;
XmlReader xr;
XmlNode node;
SqlDataReader rdr = null;
try
{
xmlDocument = new XmlDocument();
conn.ConnectionString = "Data Source=test;Initial Catalog=teste;Integrated Security=SSPI;";
cmd = new SqlCommand();
cmd.Connection = conn;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "[dbo].[spSearchKeywords]";
cmd.Parameters.Add(new SqlParameter("@VALUE", "XPT"));
conn.Open();
xr = cmd.ExecuteXmlReader();
conn.Close();
node = xmlDocument.ReadNode(xr);
}
its connecting and executing the command, however it returns nothing there is data to return and the parameters are correct(when I call the procedure in sql with the same parameter it returns me a result)
here is the proc:
ALTER PROCEDURE [dbo].[spSearchKeywords]
(
@VALUE NVARCHAR(50) = NULL,
@ACCOUNTGROUPID NVARCHAR(50) = NULL,
@ShortCodeId NVARCHAR(50) = NULL,
@VALUETYPE NVARCHAR(50) = NULL,
@ASSEMBLY NVARCHAR(100) = NULL,
@ASSEMBLYCONTAINSURI NCHAR (10) = NULL,
@ASSEMBLYTYPE NVARCHAR(50) = NULL
)
AS
BEGIN
SET NOCOUNT ON;
SELECT [Value]
,[AccountGroupId]
,[ShortCodeId]
,[ValueType]
,[assembly]
,[assemblyContainsUri]
,[assemblyType]
FROM [teste].[dbo].[keywords]
WHERE [Value] = ISNULL(@VALUE, [Value])
AND [AccountGroupId] = ISNULL(@ACCOUNTGROUPID, [AccountGroupId])
AND [ShortCodeId] = ISNULL(@SHORTCODEID, [ShortCodeId])
AND [ValueType] = ISNULL(@VALUETYPE, [ValueType])
AND [assembly] = ISNULL(@ASSEMBLY, [assembly])
AND [assemblyContainsUri] = ISNULL(@ASSEMBLYCONTAINSURI, [assemblyContainsUri])
AND [assemblyType] = ISNULL(@ASSEMBLYTYPE, [assemblyType])
FOR XML AUTO
END