sSql = "SELECT * From TMOBIHUBCE"
cmdSKU = New SqlCeCommand(sSql, oNewConnection)
cmdSKU.CommandText = CommandType.Text
rdrReadSKU = cmdSKU.ExecuteReader()
But it Displays The Following Error in Execute Reader Statement.
--------------------------------------------------------------------------
There was an error Parsing the Query. [Token Line number = 1, Token Line
offset =1, Token in error = 1 ].
Request to help me in this Regards, Thank you very Much
Arul Kumar
I think that the real problem is likely to be this line:
> cmdSKU.CommandText = CommandType.Text
It seems that you are replacing the text that you gave the command when you
created it with something else. The content of that "something else",
CommandType.Text, must be an invalid SQL statement.
Paul T.
"Arul Kumar" <Arul Ku...@discussions.microsoft.com> wrote in message
news:1476767C-77E0-4884...@microsoft.com...