'#######################################################################################
'功能:VBS访问SQL数据库
dim conn
set conn=WScript.CreateObject("ADODB.Connection")
conn.Open "Driver={SQL server};server=192.168.1.1;database=mydb;uid=myuser;pwd=mypwd;"
dim rst
set rst=WScript.CreateObject("ADODB.Recordset")
sSQL="select * from ......"
rst.open sSQL,conn,1,1
if rst.eof and rst.bof then
else
end if
WScript.QUIT
rst.close
set rst=nothing
conn.close
set conn=thing