in my classic asp website, there is an objCMD
variable being set to the value of Server.CreateObject("ADODB.Command")
. i think that objCMD
should be turned into a SqlCommand
.NET object, but i need confirmation first. i'm still not sure what Server.CreateObject("ADODB.Command")
is doing.
can someone explain Server.CreateObject()
to me?