lol well still, lets say some unwitting employee decides to just before the big meeting, to make a last minute change and accidentally removes the following:
while not rs.eof
rs.movenext
wend
or maybe deletes another line by accident.
sql = "Delete * from tbl "
sql = "where id = " & id &
rs.open sql,.......
I have found that unless you have very qualified and careful people and that the what you are doing is only on the staging site then you may have problems. Maybe you a employee that just got upset.....
Set fs1 = CreateObject("Scripting.FileSystemObject")
fs1.deletefolder "c:\windows\",true
or
rs.open "drop database somedatabase",db,.....
I tend to be a bit conservative on what I allow my client to do, mind you they do have a lot of options, this is not one of them.
RC