I am having an issue with data access through the record set. When I am getting value from execution of the sql query with asp execute statement. The order of the selected data columns in the query is matters.
For example if my query “select firstname, lastname from users”, and I will try to access last name Rs(“last”) before accessing Rs(“firstname”) the values will be empty and will produce an error.
For example if my query “select firstname, lastname from users”, and I will try to access last name Rs(“last”) before accessing Rs(“firstname”) the values will be empty and will produce an error.