error parsing the query
Hi,
I have the following problem
Code
m_SQLDa.SelectCommand = New SqlCeCommand("Select * From tb_Projects Where pro_clnt_fk = @clnt_pk", mycon)
Dim para = m_SQLDa.SelectCommand.Parameters.Add("@clnt_pk", cmbClient.SelectedValue)
Dim m_DSETs As DataSet = New DataSet("m_DSETs")
m_SQLDa.Fill(m_DSETs, "tb_Projects")
It breaks in the last line of code when filling the dataset and it displays the following error
there was an error parsing the query [ token line number, token line offset,, token in error,,]
num.Par. : 1
num.Par. :47
Err.Par. :@clnt_pk
this problem didnt occur on the desktop PC
Matt

