January 11, 2007 at 2:42 am
I am running SQLCE at Pocket PC Emulator 2003 SE. I have a database and i am accessing records from it, the system gives error on executing the query at Emulator.
I have problem in executing the query
SELECT DelPatientNo,DelInstruction,RXNO,RefillNo,Notes,Copay FROM Order. The Error Message is=There was an error parsing the query. [ Token line number = 1,Token line offset = 68,Token in error = Order ]
Error Number is=25501
I have tried this query from query analyzer at emulator and found same error. Also the query Select * from Order generates same error.
January 11, 2007 at 7:01 am
Please note that the 'Order' is a reserved word in T-SQL, as in 'ORDER BY' clause.
Modify your state as follows:
Select * from [dbo].[Order]
Good luck!
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy