对于sql server 2000来说,它提供了两个全新的函数(ident_current,scope_identity),并且改进了@@identity的不足.当你插入新记录后,可以调用函数:
print ident_current(table) 这将获得新的identity值,不管数据库中是不是有记录添加(这就避免了@@identity的连接限制)
或者:print scope_identity() 这将获得在当前存储过程,触发器等其他程序创建的最新记录的identity值.
而全局变量@@identity有一个问题,当对一张表执行insert时,如果该表有触发器程序在执行插入操作,然后,接着在另一张表中插入记录,这样返回@@identity值就是第二张表的identity值。
如果你用的不是sql server 2000,你最好一个简单的存储过程来解决这个问题。
create procedure myproc
@param1 int
as
begin
set nocount on
insert into sometable
(
intfield
)
values
(
@param1
)
set nocount off
select newid = @@identity
end
在asp中你可以这样做:
<%
fakevalue = 5
set conn = server.createobject("adodb.connection")
conn.open "<conn string>"
set rs = conn.execute("exec myproc @param1=" & fakevalue)
response.write "new id was " & rs(0)
rs.close: set rs = nothing
conn.close: set conn = nothing
%>
该评论在 2010/12/13 14:16:19 编辑过