I have the following shortened classic ASP code that makes a SQL insert call...
cmd.CommandText = "insert into MyTable values(blah, blah, blah)"
cmd.CommandType = adCmdText
Set rs = cmd.Execute()
Using the recordset that Execute() returns how can I tell whether the insertion was successful or not?