CREATE PROCEDURE myP
@NewsID int
 ASselect Title
where NewsID=@NewsID GO

解决方案 »

  1.   

    这个在存储中生动态的SQL语名不就成了么
      

  2.   

    namespace HowTo.Samples.ADONET
    {using System;
    using System.Data;
    using System.Data.SqlClient;public class outparamswithacommand
    {
      public static void Main()
      {
        outparamswithacommand myoutparamswithacommand = new outparamswithacommand();
        myoutparamswithacommand.Run();
      }  public void Run()
      {
        String MsgString = null;    // Create a new Connection and SqlDataAdapter    SqlConnection myConnection = new SqlConnection("server=(local)\\NetSDK;Integrated Security=SSPI;database=northwind");    // Create stored procedure with out parameter
        try
        {
          SqlCommand CreateProcCommand = new SqlCommand("CREATE PROCEDURE GetCompanyName  @CustomerId nchar(5), @CompanyName nchar(40) out as select @CompanyName = CompanyName from Customers where CustomerId = @CustomerId",myConnection);
          SqlCommand DropProcCommand = new SqlCommand("IF EXISTS (SELECT name FROM sysobjects WHERE name = 'GetCompanyName' AND type = 'P') DROP PROCEDURE GetCompanyName", myConnection);      myConnection.Open();
          DropProcCommand.ExecuteNonQuery();   // remove procedure if it exists
          CreateProcCommand.ExecuteNonQuery(); // create procedure      SqlCommand myCommand = new SqlCommand("GetCompanyName", myConnection);
          myCommand.CommandType = CommandType.StoredProcedure;      // Fill the parameters collection based upon stored procedure.
          SqlParameter workParam = null;      workParam = myCommand.Parameters.Add("@CustomerID", SqlDbType.NChar, 5);
          // ParameterDirection.Input is the default for the Direction property. Thus the following line is not
          // needed here. To set the Direction property to its default value, use the following line.
          // workParam.Direction = ParameterDirection.Input;      workParam = myCommand.Parameters.Add("@CompanyName", SqlDbType.NChar, 40);
          workParam.Direction = ParameterDirection.Output;      myCommand.Parameters["@CustomerID"].Value = "ALFKI";      myCommand.ExecuteNonQuery();
          MsgString = "CompanyName = " + myCommand.Parameters["@CompanyName"].Value.ToString();
        }
        catch(Exception e)
        {
          MsgString = e.ToString();
        }
        finally
        {
          myConnection.Close();
        }    Console.Write(MsgString);
      }
    }}
      

  3.   

    myCommand.Parameters.Add("@MyPara", 40);

    myCommand.Parameters["@MyPara"].value=40;