Classic ASP result set - ultimate confusion!
- by Paul
Consider a simple result set from a mysql query.
rs("description")
and
rs("description").Value
should be considered as the same thing. However, depending on how you access them, you get different results (!!)
Access rs("description") directly and you are returned a "Field" object. Or, more importantly, use it directly in a call, and you…