ASP.NET中调用SQL存储过程

第一种:
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;

namespace StoreProduceTest
{
    public class Program
    {
        /**
         * 存储过程
         *
         * create procedure queryStuNameById
            @stuId varchar(10),--输入参数
            @stuName varchar(10) output --输出参数
            as
             select @stuName=stuName from stuInfo where stuId=@stuId
         *
         */


        static void Main(string[] args)
        {
            Operater op = new Operater();
            string name = op.QueryStuNameById("1234");

            Console.WriteLine(string.Format("学号为1234的学生的姓名为{0}", name));
        }

    }

    public class Operater
    {
        private string ConStr = "server=.;database=User;uid=sa;pwd=1234";
        private SqlConnection sqlCon = null;
        private SqlCommand sqlComm = null;
        SqlDataReader dr = null;

        public string QueryStuNameById(string Id)
        {

            string name = "";

            try
            {
                using (sqlCon = new SqlConnection(ConStr))
                {

                    sqlCon.Open();
                    sqlComm = new SqlCommand("queryStuNameById", sqlCon);
                    //设置命令的类型为存储过程
                    sqlComm.CommandType = CommandType.StoredProcedure;

                    //设置参数
                    sqlComm.Parameters.Add("@stuId", SqlDbType.VarChar);
                    //注意输出参数要设置大小,否则size默认为0,
                    sqlComm.Parameters.Add("@stuName", SqlDbType.VarChar, 10);
                    //设置参数的类型为输出参数,默认情况下是输入,
                    sqlComm.Parameters["@stuName"].Direction = ParameterDirection.Output;

                    //为参数赋值
                    sqlComm.Parameters["@stuId"].Value = "1234";
                    //执行
                    sqlComm.ExecuteNonQuery();
                    //得到输出参数的值,把赋值给name,注意,这里得到的是object类型的,要进行相应的类型轮换
                    name = sqlComm.Parameters["@stuName"].Value.ToString();

                }

            }
            catch (Exception ex)
            {

                Console.WriteLine(ex.ToString());
            }
            return name;

        }
    }

}

第二种:
用ASP.NET与SQL SERVER可是缘份最好了,稍大的程序一般第一先考虑的是SQLSERVER,只是一些很考虑经济的才使用ACCESS等了。用SQL SERVER,为了使数据库的效率更好,一般都会才取存储过程,因存储过程执行速度快,并且可以实现一些高级的查询等功能。比如传入一些数据参数,但执行的SQL过程可能不同等。
  
  下面就来个例子,建立一新的角色,要求角色的名字不能重复,以下是一存储过程。
  
  CREATE PROCEDURE sp_AccountRole_Create@CategoryID int,
  @RoleName nvarchar(10),
  @Description nvarchar(50),
  @RoleID int output
  AS
  DECLARE @Count int
  
  -- 查找是否有相同名称的记录
  SELECT @Count = Count(RoleID) FROM Account_Role WHERE
  RoleName = @RoleName
  IF @Count = 0
  INSERT INTO Account_Role
  (CategoryID, RoleName, Description) valueS
  (@CategoryID, @RoleName, @Description)
  SET @RoleID = @@IDENTITY
  RETURN 1GO
  
  执行存储过程的C#过程:
  
  SqlConnection DbConnection = new SqlConnection(mConnectionString);
  SqlCommand command = new SqlCommand( "sp_AccountRole_Create", DbConnection );
  DbConnection.Open(connectString);
  // 废置SqlCommand的属性为存储过程command.CommandType = CommandType.StoredProcedure;
  command.Parameters.Add("@CategoryID", SqlDbType.Int, 4);
  command.Parameters.Add("@RoleName", SqlDbType.NVarChar, 10);
  command.Parameters.Add("@Description", SqlDbType.NVarChar, 50);
  command.Parameters.Add("@RoleID", SqlDbType.Int, 4);
  // 返回值command.Parameters.Add("Returnvalue",
  SqlDbType.Int,
  4,    // Size
  ParameterDirection.Returnvalue,
  false,
  // is nullable       0,
  // byte precision      0,
  // byte scale      string.Empty,
  DataRowVersion.Default,
  null );
  command.parameters["@CategoryID"].value = permission.CategoryID;
  command.parameters["@RoleName"].value = permission.PermissionName;
  command.parameters["@Description"].value = permission.Description;
  // 可以返回新的ID值command.parameters["@RoleID"].Direction = ParameterDirection.Output;
  int rowsAffected = command.ExecuteNonQuery();
  int result = command.parameters["Returnvalue"].value;int newID = command.parameters["@RoleID"].value;
  
  功能挺强的吧,可以得到三个值,分别是行影响值,存储过程返回值,新的ID值。

原文地址:https://www.cnblogs.com/SALIN/p/1332229.html