We have a small application to track holidays of our employees.
strUserId = session("UserId ")
strSQL = "SELECT * From holidayrequests where UserId="& strUserId &
" ORDER by Status"
I run the above query which for most part returns the results fine but
occassionally it omits records. i check in the database and these records
are present and when I view the details of the same user through the admin
section of the script all the records are returned.
It only happens with just one user.
Has anyone seen this happen? Any Ideas how to resolve this.
Regards
strUserId = session("UserId ")
strSQL = "SELECT * From holidayrequests where UserId="& strUserId &
" ORDER by Status"
I run the above query which for most part returns the results fine but
occassionally it omits records. i check in the database and these records
are present and when I view the details of the same user through the admin
section of the script all the records are returned.
It only happens with just one user.
Has anyone seen this happen? Any Ideas how to resolve this.
Regards
Comment