[Macromedia][SQLServer JDBC Driver][SQLServer]Invalid object name
This is the query that I am trying to run and I am getting the above error
<CFPARAM NAME="Form.UserLogin" default=" " TYPE="string">
<CFPARAM NAME="Form.UserPassword" default=" " TYPE="string">
<CFQUERY NAME="GetUser" DATASOURCE="Blinkey">
SELECT *
FROM OWContacts
WHERE UserLogin = '#Form.UserLogin#'
AND UserPassword = '#Form.UserPassword#'
</CFQUERY>
<cfdump var="#GetUser#">
This query is for the login page of the intranet system that I am responsible for.
I've read several threads trying to figure out the problem and as of yet haven't found a good answer. The code works in CF9, but I am trying CF2018 on my test server and I keep getting the error. I've checked the DSN information and the data source that is being called is marked as the default database for the login.
