PC6下载站

分类分类

返回UPDATE SQL语句所影响的行数的方法

关注+2004-11-07作者:蓝点

用如下方法可以直接得到影响的行数:



<%

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

%>








展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消