How can I romove double-quotes from a string I'm passing into a parametized query? They cause an error...
VB Code:
inString = "101,102,110,114" Try Me.ITMTableAdapter.FillByItemIDList(Me.ItemDBDataSet.ITM, inString) Catch ex As Exception MessageBox.Show(ex.Message) End Try
The WHERE clause in my table adapter fill by query has the following: WHERE ITM_ID IN (@ITM_ID_LST)
Any thoughts would be helpful.
Phillip




Reply With Quote