That is what I'm getting when trying to run a query from a database. The query runs fine in Access, I just import it out to ASP and call it my strSQL and now it's giving me this error. Here is my strSQL, please tell me what I'm doing wrong. Thanks.
Code:
strSQL = "SELECT Evaluations.RecordID, Evaluator.Evaluator, Member.Member, Title.Title, Evaluations.Evaluation_Date, Evaluations.Greeting, Evaluations.Verification, Evaluations.Probing, Evaluations.Control, Evaluations.Language, Evaluations.Courtesy, Evaluations.Accuracy, Evaluations.Problem, Evaluations.Transition, Evaluations.Retention, Evaluations.Ethics, Evaluations.Explain, Evaluations.Score"
strSQL = strSQL & " FROM Title RIGHT JOIN (Member RIGHT JOIN (Evaluator RIGHT JOIN Evaluations ON Evaluator.EvaluatorID = Evaluations.Evaluator) ON Member.MemberID = Evaluations.Member) ON Title.TitleID = Evaluations.Title"
strSQL = strSQL & " WHERE Evaluations.RecordID = " & Request.QueryString("Record")
Thanks for any help.
If you think education is expensive, try ignorance.
Most of the time I have had this problem it is usually is corrected by a fresh install of the newest MDAC from Microsoft. This would be my first guess...
Also, can we see the Connection String (is it using a DSN, or is it DSNless)?
That was so close. Thank you. It seems that solution is referring to the error when you're trying to append or write to the DB. The writing portion is working fine, it's the reading that is giving me the problem.
Any other suggestions will be greatly appreciated.
If you think education is expensive, try ignorance.
No, I don't hate you for saying that. I am very happy to hear any suggestions.
The only reason I can say I didn't make a typo is because I made the query in Access. I then copied and pasted it into the ASP page. It is impossible for something to get misspelled while I'm doing that right?
If you think education is expensive, try ignorance.