i mean i create connections .. below is a example of the script connection system... way i have done it
adoCon.open strCon
then say make a query
rsQuery.open strSQL , strCon
rsQuery.close
adoCon.Close
SET adoCon = Nothing
SET strCon = Nothing
that is what my script uses.....
the problem is one of the users has said that the script is still leaving connections to the database open ..
i was woundering if there was a script code that i can use to see what ones are being left open...
i dont want to use it in the script i want to use it to find the connections that are left open.... so i can fix those connections....
coz if i was goning to use
if AdoCon = nothing then
END IF
i would have seen where the problem is ...