當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

返回UPDATE SQL語句所影響的行數(shù)的簡單實現(xiàn)代碼

作者:  來源:  發(fā)布時間:2011-7-8 16:14:46  點擊:

下面提供給大家分享的是關(guān)于返回UPDATE SQL語句所影響的行數(shù)的方法,希望對大家有幫助。

用如下方法可以直接得到影響的行數(shù):

<%
dim conn
dim sql
dim lngrecs

sql="update table1 set field1='good'"
set conn=server.createobject("adodb.connection")
conn.open dsn
conn.execute sql,lngrecs
conn.close:set conn=nothing

response.write lngrecs
%>

用存儲過程也有同樣的功能:

<%
dim cmd
dim lngrecs
dim sql

sql="update table1 set field1='good'"
set cmd=server.createobject("adodb.command")
with cmd
.activeconnection=dsn
.commandtype=adcmdstoredproc
.commandtext=sql
.execute lngrecs,,adexecutenorecords
end with
set cmd.activeconnection.nothing
set cmd=nothing

response.write lngrecs
%>

相關(guān)軟件

相關(guān)文章

文章評論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z