存储过程 与 SQL Server语句大比拼

 

使用sql server存储过程,可以在数据库中实现多种功能,下面就为您介绍其中的一种,供您参考,希望对您学习sql server存储过程的使用有所帮助。

如果需要同时插入N条数据,不想在程序里控制,但是SQL Sever又不支持数组参数.所以只能用变通的办法了.利用SQL Server强大的字符串处理传把数组格式化为类似"1,2,3,4,5,6",然后在sql server存储过程中用SubString配合CharIndex把分割开来。

详细的sql server存储过程:

 
 
  1. CREATE PROCEDURE dbo.ProductListUpdateSpecialList  
  2.     @ProductId_Array varChar(800),  
  3.     @ModuleId int  
  4. AS  
  5.     DECLARE @PointerPrev int  
  6.     DECLARE @PointerCurr int  
  7.     DECLARE @TId int  
  8.     Set @PointerPrev=1 
  9.     set @PointerCurr=1 
  10.       
  11.     begin transaction  
  12.     Set NoCount ON  
  13.     delete  from ProductListSpecial where ModuleId=@ModuleId  
  14.       
  15.     Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  
  16.     set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev,@PointerCurr-@PointerPrev) as int)  
  17.     Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
  18.     SET @PointerPrev = @PointerCurr  
  19.     while (@PointerPrev+1 < LEN(@ProductId_Array))  
  20.     Begin  
  21.         Set @PointerCurr=CharIndex(',',@ProductId_Array,@PointerPrev+1)  
  22.         if(@PointerCurr>0)  
  23.         Begin  
  24.             set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,@PointerCurr-@PointerPrev-1) as int)  
  25.             Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
  26.             SET @PointerPrev = @PointerCurr  
  27.         End  
  28.         else  
  29.             Break  
  30.     End  
  31.       
  32.     set @TId=cast(SUBSTRING(@ProductId_Array,@PointerPrev+1,LEN(@ProductId_Array)-@PointerPrev) as int)  
  33.     Insert into ProductListSpecial (ModuleId,ProductId) Values(@ModuleId,@TId)  
  34.     Set NoCount OFF  
  35.     if @@error=0 
  36.     begin  
  37.         commit transaction  
  38.     end  
  39.     else  
  40.     begin  
  41.         rollback transaction  
  42.     end  
  43. GO  

 

本文从多个角度阐述了SQL Server与存储过程的比较。

①为什么要使用存储过程?

因为它比SQL语句执行快。

②存储过程是什么?

把一堆SQL语句罗在一起,还可以根据条件执行不通SQL语句。

③来一个最简单的存储过程:

CREATE PROCEDURE dbo.testProcedure_AX
AS
select userID from
 USERS order by userid desc

注:dbo.testProcedure_AX是你创建的存储过程名,可以改为:AXzhz等,别跟关键字冲突就行了.AS下面就是一条SQL语句,不会写SQL语句的请回避。

④怎么在ASP.NET中调用这个存储过程:

 

public static string GetCustomerCName
(ref ArrayList arrayCName,ref ArrayList arrayID)
        {
            SqlConnection con=ADConnection.createConnection();
            SqlCommand cmd=new SqlCommand("testProcedure_AX",con);
            cmd.CommandType=CommandType.StoredProcedure;
            con.Open();
            try
            {
                SqlDataReader dr=cmd.ExecuteReader();
                while(dr.Read())
                {
                    if(dr[0].ToString()=="")
                    {
                        arrayCName.Add(dr[1].ToString());
                    }
                }
                con.Close(); 
                return "OK!";
            }
            catch(Exception ex)
            {
                con.Close();
                return ex.ToString();
            }
        }

注:其实就是把以前:

SqlCommand cmd=new SqlCommand("select 
userID from USERS order by userid desc",con);

中的SQL语句替换为存储过程名,再把cmd的类型标注为CommandType.StoredProcedure(存储过程)。

 

⑤写个带参数的存储过程:

 

 

CREATE PROCEDURE dbo.AXzhz
/*
这里写注释
*/
@startDate varchar(16),
@endDate varchar(16) 
AS
 select id  from table_AX where commentDateTime>
@startDate and commentDateTime<@endDate order 
by contentownerid DESC

注:@startDate varchar(16)是声明@startDate 这个变量,多个变量名间用【,】隔开.后面的SQL就可以使用这个变量了。

 

⑥我怎么在ASP.NET中调用这个带参数的存储过程:

 

public static string GetCustomerCNameCount
(string startDate,string endDate,ref DataSet ds)
{
            SqlConnection con=ADConnection.createConnection();
//-----------------------注意这一段-------------------
--------------------------------------------------------
-----------------------------
            SqlDataAdapter da=new SqlDataAdapter("AXzhz",con);

            para0=new SqlParameter("@startDate",startDate);
            para1=new SqlParameter("@endDate",endDate);
            da.SelectCommand.Parameters.Add(para0);
            da.SelectCommand.Parameters.Add(para1);
            da.SelectCommand.CommandType=CommandType.StoredProcedure;
//-------------------------------------------------------------
------------------------------------------------------------------


            try
            {
                con.Open();
                da.Fill(ds);
                con.Close();
                return "OK";
            }
            catch(Exception ex)
            {
                return ex.ToString();
            }            
        }

注:把命令的参数添加进去,就可以了。

⑦重新验证SQL命令执行是否成功。

 

CREATE PROCEDURE dbo.AXzhz
/*
  @parameter1 用户名
  @parameter2 新密码
*/
@password nvarchar(20),
@userName nvarchar(20)
AS
declare @err0 int
update WL_user set password=@password where UserName=@userName
set @err0=@@error 
select  @err0 as err0

注:先声明一个整型变量@err0,再给其赋值为@@error(这个是系统自动给出的语句是否执行成功,0为成功,其它为失败),最后通过select把它选择出来。

⑧那怎么从后台获得这个执行成功与否的值:

下面这段代码可以告诉你答案:

public static string GetCustomerCName()
        {
            SqlConnection con=ADConnection.createConnection();
            
            SqlCommand cmd=new SqlCommand("AXzhz",con);
            cmd.CommandType=CommandType.StoredProcedure;
            para0=new SqlParameter("@startDate","2006-9-10");
            para1=new SqlParameter("@endDate","2006-9-20");
            da.SelectCommand.Parameters.Add(para0);
            da.SelectCommand.Parameters.Add(para1); 
            con.Open();
            try
            {
               Int32 re=(int32)cmd.ExecuteScalar(); 
                con.Close(); 
                if (re==0)
                 return "OK!";
                else
                 return "false";
            }
            catch(Exception ex)
            {
                con.Close();
                return ex.ToString();
            }
        }

注:就是通过SqlCommand的ExecuteScalar()方法取回这个值。

⑨我要根据传入的参数判断执行哪条SQL语句:

 

ALTER PROCEDURE dbo.selectCustomerCNameCount
@customerID int
AS
if @customerID=-1
 begin
 select contentownerid ,userCName,count(*) 
as countAll from view_usercomment group by 
contentownerid,userCName order by contentownerid DESC
 end
else
 begin
 select contentownerid ,userCName,count(*) 
as countAll from view_usercomment where 
contentownerid=@customerID group by contentownerid
,userCName order by contentownerid DESC
 end

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值