本帖最后由 awingu 于 2010-1-4 14:45 编辑 #Region ;**** 参数创建于 ACNWrapper_GUI ****
#AutoIt3Wrapper_Outfile=aaaa.exe
#EndRegion ;**** 参数创建于 ACNWrapper_GUI ****
$pro = ObjCreate("ADODB.Connection")
$RS = ObjCreate("ADODB.Recordset")
$pro.Open("driver={SQL Server};server=192.168.128.129;uid=sa;pwd=mima;database=awingu_soft_0001")
$RS.ActiveConnection = $pro
;$sql = "Create Table ABCD (AABB TEXT)"
$RS.Open("Update GusetBook set Visitor='112233' where BB='2'") ;################看这里##########
;$RS.Execute("select * from gusetbook")
While (Not $RS.eof And Not $RS.bof)
$a = $RS.Fields(0).value
MsgBox(0, "", $a & " | " & $RS.Fields(1).value & " | " & $RS.Fields(2).value)
$RS.movenext
WEnd
$RS.close
$pro.close
更新数据、添加数据等,都是使用$RS.Open("......")
如果使用$RS.Execute(".....")则出错。不知道没有没有人知道为什么。 |