Question
"is not a valid path" error
I'm linking to a table from another dB in Access. The data
show up fine in Access.
Then, in CF, I'm trying to join two tables to grab a subset of records.
I have the following query:
<cfquery name="q_Resp" datasource="req" dbtype="odbc">
SELECT r.id, r.role, r.name, t.term
FROM req_role r, term t
WHERE r.id = '#SESSION.PID#' and t.term = '20072'
</cfquery>
It seems like it should work, however, I'm getting this error which points to the linked table:
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] 'S:\records\BE.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
Can anyone help?
Thx,
Rick
Then, in CF, I'm trying to join two tables to grab a subset of records.
I have the following query:
<cfquery name="q_Resp" datasource="req" dbtype="odbc">
SELECT r.id, r.role, r.name, t.term
FROM req_role r, term t
WHERE r.id = '#SESSION.PID#' and t.term = '20072'
</cfquery>
It seems like it should work, however, I'm getting this error which points to the linked table:
Error Executing Database Query.
[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] 'S:\records\BE.mdb' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
Can anyone help?
Thx,
Rick