The Microsoft Access database engine cannot find the input table or query 'Vidss'. Make sure it exists and that its name is spelled correctly.
Issue Details
If your table name is misspelled, you will receive the following error.
Microsoft Access Database Engine error '80040e37' The Microsoft Access database engine cannot find the input table or query 'Vidss'. Make sure it exists and that its name is spelled correctly. /NewInsert.asp, line 109
Recreate Issue
Code Example
sql.commandtext="select column1 from Vidss"
The above Table is incorrect, either in spelling or in the name itself.
Resolve Issue
Code Example
sql.commandtext="select column1 from Vids"
As you can see, we removed one of the "s" from the table name.
Make sure the name of your database Table is spelled correctly.