我用這個存儲過程進行插入和返回插入行的id插入後獲取ID在SQL Server中
ALTER PROCEDURE [dbo].[addObjective]
(
@Name nvarchar(250)
,@ObjectiveGroupId int
,@CreatorId int
,@LanguageId int
,@isFinal bit
)
as
insert into Objective values
(
@Name
,@ObjectiveGroupId
,@CreatorId
,GETDATE()
,@LanguageId
,@isFinal
)
select scope_identity() as Id;
但如何使用讀取使用vb.net
代碼
返回的ID此命令將返回-1