存储过程既可以在查询分析器中编写,也可以在企业管理器中编写。最重要是学会其语法。SQL Sever 联机帮助中有详细的说明。
例1:
create proc proc_stu
@sname varchar(20),
@pwd varchar(20)
as
select * from ren where sname=@sname and pwd=@pwd
go
查看结果:proc_stu 'admin','admin'
在asp.net中调用存储过程代码:
int i = 2;
string ConnStr = "server=.;database=doc;uid=sa;pwd=admin;";
SqlConnection conn = new SqlConnection(ConnStr);
SqlCommand comm = new SqlCommand("proc_stu", conn); //建立一个命令
comm.CommandType = CommandType.StoredProcedure; //说明执行的是一个存储过程
comm.Parameters.Add(new SqlParameter("@sname", SqlDbType.Char, 20)); //定义一个存储过程变量
comm.Parameters["@sname"].Value = "admin"; //给存储过程变量赋值
comm.Parameters.Add(new SqlParameter("@pwd", SqlDbType.Char, 20)); //定义一个存储过程变量
comm.Parameters["@pwd"].Value = "admin";
comm.Connection.Open(); //打开连接
try
{
i= (int)comm.ExecuteScalar(); // ExecuteScalar:返回第一行第一列值
}
catch (SqlException er)
{
Response.Write(er.ToString()); //向上一级抛异常
}
finally
{
comm.Connection.Close();
conn.Close();
}
Response.Write(i.ToString());
例2:
下面的存储过程实现用户验证的功能,如果不成功,返回0,成功则返回1.
CREATE PROCEDURE VALIDATE @USERNAME CHAR(20),@PASSWORD CHAR(20),@LEGAL BIT OUTPUT
AS
IF EXISTS(SELECT * FROM REN WHERE SNAME = @USERNAME AND PWD = @PASSWORD)
SELECT @LEGAL = 1
ELSE
SELECT @LEGAL = 0
在程序中调用该存储过程,并根据@LEGAL参数的值判断用户是否合法。
.net 中显示返回值主要代码
comm.Parameters.Add("@LEGAL", 0);
comm.Parameters["@LEGAL"].Direction = ParameterDirection.Output;
comm.ExecuteNonQuery(); //ExecuteNonQuery:返回影响的行数
i = (int)comm.Parameters["@LEGAL"].Value;
Response.Write(i.ToString());
例3:一个高效的数据分页的存储过程 可以轻松应付百万数据
CREATE PROCEDURE pageTest --用于翻页的测试
--需要把排序字段放在第一列
(
@FirstID nvarchar(20)=null, --当前页面里的第一条记录的排序字段的值
@LastID nvarchar(20)=null, --当前页面里的最后一条记录的排序字段的值
@isNext bit=null, --true 1 :下一页;false 0:上一页
@allCount int output, --返回总记录数
@pageSize int output, --返回一页的记录数
@CurPage int --页号(第几页)0:第一页;-1最后一页。
)
AS
if @CurPage=0
begin
--统计总记录数
select @allCount=count(ProductId) from Product_test
set @pageSize=10
--返回第一页的数据
select top 10
ProductId,
ProductName,
Introduction
from Product_test order by ProductId
end
else if @CurPage=-1
select * from
(select top 10 ProductId,
ProductName,
Introduction
from Product_test order by ProductId desc ) as aa
order by ProductId
else
begin
if @isNext=1
--翻到下一页
select top 10 ProductId,
ProductName,
Introduction
from Product_test where ProductId > @LastID order by ProductId
else
--翻到上一页
select * from
(select top 10 ProductId,
ProductName,
Introduction
from Product_test where ProductId < @FirstID order by ProductId desc) as bb order by ProductId
end