Parameter 'Item' specified where a database name is required.

Error 3217

You created a parameter queryG72497 that specifies an invalid parameter type.  The following example produces this error:

          PARAMETERS Param1 Text;
          SELECT [Customer ID]
          FROM Customers IN Param1;

 

Param1 is a text parameter, but the FROM Clause (SQL)DQDO8P requires a database parameter.

Change the parameter type from Text to Database, and then try the operation again.