当前位置:编程学习 > ASP.NET> 正文

sqlparamter如何传递nvarchar(max) 参数

时间:2015-4-4类别:编程学习

sqlparamter如何传递nvarchar(max) 参数

sqlparamter如何传递nvarchar(max) 参数

sqlparamter中传递nvarchar(max) 参数的方法

 

  • 
    SqlParameter paramSummary =
                    new SqlParameter("@DocumentSummary",
                    SqlDbType.VarChar, -1);
    
    		
  •  

    实例

    1、含有nvarchar(max) 的存储过程

     

  •  
  • SQL 代码   复制
  • 
    CREATE PROCEDURE GetDocumentSummary
    (
        @DocumentID int,
        @DocumentSummary nvarchar(MAX) OUTPUT
    )
    AS
    SET NOCOUNT ON
    SELECT  @DocumentSummary=Convert(nvarchar(MAX), DocumentSummary)
    FROM    Production.Document
    WHERE   DocumentID=@DocumentID
    
    		
  •  

    2、sqlparamter传递nvarchar(max) 参数

     

  • C# 代码   复制
  • 
    static private string GetDocumentSummary(int documentID)
    {
        //Assumes GetConnectionString returns a valid connection string.
        using (SqlConnection connection =
                   new SqlConnection(GetConnectionString()))
        {
            connection.Open();
            SqlCommand command = connection.CreateCommand();
            try
            {
                // Setup the command to execute the stored procedure.
                command.CommandText = "GetDocumentSummary";
                command.CommandType = CommandType.StoredProcedure;
    
                // Set up the input parameter for the DocumentID.
                SqlParameter paramID =
                    new SqlParameter("@DocumentID", SqlDbType.Int);
                paramID.Value = documentID;
                command.Parameters.Add(paramID);
    
                // Set up the output parameter to retrieve the summary.
                SqlParameter paramSummary =
                    new SqlParameter("@DocumentSummary",
                    SqlDbType.NVarChar, -1);
                paramSummary.Direction = ParameterDirection.Output;
                command.Parameters.Add(paramSummary);
    
                // Execute the stored procedure.
                command.ExecuteNonQuery();
                Console.WriteLine((String)(paramSummary.Value));
                return (String)(paramSummary.Value);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
                return null;
            }
        }
    }
    
    		
  •  

    标签:
    上一篇下一篇

    猜您喜欢

    热门推荐