This is my piece of code.
DataSet ds = //assigning to dataSet from stored procedure
DataTable dt = ds.Tables[0]; // It has data i checked in debugging..
when doing this operation in run time
Select("PGroup_strCode = O ")
It s throwing an error
"Cannot find Column[O]" -- ( i made a mistake earlier it is 'O' not zero as mentioned earler )
That column is also present. Can't figure it out the reason.
UPDATE :
Select("[Cinema_strID] = ABIC")
In select part i changed this now error is Cannot find Column[ABIC]