Working on a C# console app, I have a line:
rowsFound = tempUsers.Select("EmailAddress = '" + userData[2].ToString() + "'");
rowsFound is a DataRow[], tempUsers is a DataTable, and userData is a SqlDataReader. I had the wrong index for userData (it was 1) and I got this error:
System.Data.SyntaxErrorException was unhandled
Message=Syntax error: Missing operand after 'Bannon' operator.
Source=System.Data
StackTrace:
at System.Data.ExpressionParser.Parse()
at System.Data.DataExpression..ctor(DataTable table, String expression, Type type)
at System.Data.Select..ctor(DataTable table, String filterExpression, String sort, DataViewRowState recordStates)
at System.Data.DataTable.Select(String filterExpression)
When I inserted the correct index (2), the error went away.
Any ideas on what a "Bannon operator" is?
userdata[1]the user's last name? Is his name "O'Bannon"? – David Yaw Jul 14 '11 at 14:01userData[1]is a name,userData[2]is an email address. corrected. – Greg Bair Jul 14 '11 at 14:16