Access Query
I'm trying to run this query in coldfusion to retrieve data from Access:
<cfquery datasource="Master" name="TestQRY">
SELECT Employee_Name
FROM tbl_Benefits
WHERE (((tbl_Benefits.Employee_ID)="2328"));
</cfquery>
<cfdump var="#TestQRY#">
If I run it without the WHERE clause it is no issue... But with Where Clause I get the following errors...
Error Executing Database Query. | |
| [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 1. | |
| The error occurred in D:\inetpub\wwwroot-dev\y_b_g\App.cfm: line 1 | |
1 : <cfquery datasource="Master" name="TestQRY"> 2 : SELECT Employee_Name 3 : FROM tbl_Benefits | |
