Table Select Problem

  • Thread starter Thread starter Jesse
  • Start date Start date
J

Jesse

I am trying to perform a simple Select Command on my typedDataset table.
I have done this many time before but the following code

string strSearch = "MusicStyle =Other";
DataRow[] foundRows = DM.DS.Album.Select(strSearch);

Keeps telling me that it can't find column [Other]

Any ideas?
 
Hi


It should be "MusicStyle = 'Other'" /* See Other is enclosed in Single
Quotes */

HTH
Prasad
 
Back
Top