ASP.NET中如何調(diào)用存儲(chǔ)過(guò)程
發(fā)表時(shí)間:2024-06-06 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]用ASP.NET與SQL SERVER可是緣份最好了,稍大的程序一般第一先考慮的是SQL SERVER,只是一些很考慮經(jīng)濟(jì)的才使用ACCESS等了。用SQL SERVER,為了使數(shù)據(jù)庫(kù)的效率更好,一般都會(huì)才取存儲(chǔ)過(guò)程,因存儲(chǔ)過(guò)程執(zhí)行速度快,并且可以實(shí)現(xiàn)一些高級(jí)的查詢(xún)等功能。比如傳入一些數(shù)據(jù)參數(shù),但...
用ASP.NET與SQL SERVER可是緣份最好了,稍大的程序一般第一先考慮的是SQL SERVER,只是一些很考慮經(jīng)濟(jì)的才使用ACCESS等了。用SQL SERVER,為了使數(shù)據(jù)庫(kù)的效率更好,一般都會(huì)才取存儲(chǔ)過(guò)程,因存儲(chǔ)過(guò)程執(zhí)行速度快,并且可以實(shí)現(xiàn)一些高級(jí)的查詢(xún)等功能。比如傳入一些數(shù)據(jù)參數(shù),但執(zhí)行的SQL過(guò)程可能不同等。
下面就來(lái)個(gè)例子,建立一新的角色,要求角色的名字不能重復(fù),以下是一存儲(chǔ)過(guò)程。
CREATE PROCEDURE sp_AccountRole_Create@CategoryID int,
@RoleName nvarchar(10),
@Description nvarchar(50),
@RoleID int output
AS
DECLARE @Count int
-- 查找是否有相同名稱(chēng)的記錄
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 1
GO
執(zhí)行存儲(chǔ)過(guò)程的C#過(guò)程:
SqlConnection DbConnection = new SqlConnection(mConnectionString);
SqlCommand command = new SqlCommand( "sp_AccountRole_Create", DbConnection );
DbConnection.Open(connectString);
// 廢置SqlCommand的屬性為存儲(chǔ)過(guò)程
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;
功能挺強(qiáng)的吧,可以得到三個(gè)值,分別是行影響值,存儲(chǔ)過(guò)程返回值,新的ID值。