Can anyone answer this problem we have please.
On the local development machine a page is called with 2 URL values (make & model) the page uses these to generate an SQL Select statement from an access database - this all works fine.
Upload the site to the web, and the same page is called with the same values, the page receives the values correctly but the following error occurs.
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2.
The error occurred in D:\Domains\specific-spares.com\ line 8
6 : FROM ProductFindByGroup
7 : WHERE PMIDENT = "#URL.make#"
8 : AND PMODEL = "#URL.model#"
9 : ORDER BY ptype ASC
10 : </cfquery>
--------------------------------------------------------------------------------
SQL SELECT * FROM ProductFindByGroup WHERE PMIDENT = "EVESHAM" AND PMODEL = "VOYAGER C530" ORDER BY ptype ASC
DATASOURCE specificspares
VENDORERRORCODE -3010
SQLSTATE 07002
On the local development machine a page is called with 2 URL values (make & model) the page uses these to generate an SQL Select statement from an access database - this all works fine.
Upload the site to the web, and the same page is called with the same values, the page receives the values correctly but the following error occurs.
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Too few parameters. Expected 2.
The error occurred in D:\Domains\specific-spares.com\ line 8
6 : FROM ProductFindByGroup
7 : WHERE PMIDENT = "#URL.make#"
8 : AND PMODEL = "#URL.model#"
9 : ORDER BY ptype ASC
10 : </cfquery>
--------------------------------------------------------------------------------
SQL SELECT * FROM ProductFindByGroup WHERE PMIDENT = "EVESHAM" AND PMODEL = "VOYAGER C530" ORDER BY ptype ASC
DATASOURCE specificspares
VENDORERRORCODE -3010
SQLSTATE 07002