本帖最后由 lhy6456210 于 2011-4-21 15:56 编辑 Dim $hardware = "test"
Dim $bb="网吧名称"
$conn = ObjCreate("ADODB.Connection")
$RS = ObjCreate("ADODB.Recordset")
$conn.Open ("driver={SQL Server};server=192.168.1.222;uid=sa;pwd=bswwds;database=mydata") ;问题在这里,现在的代码没有问题,如果这里改成使用WINDOWS认证怎么写,把用户名和密码去掉??
$RS.ActiveConnection = $conn
$RS.open ("select " &$bb& " from "&$hardware)
While (Not $RS.eof And Not $RS.bof)
$data=$RS.Fields (0).value
MsgBox(0,"",$data)
$RS.movenext
WEnd
$conn.Open ("driver={SQL Server};server=192.168.1.222;uid=sa;pwd=bswwds;database=mydata") ;问题在这里,现在的代码没有问题,如果这里改成使用WINDOWS认证怎么写,把用户名和密码去掉?? |