Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to select rows from DataTable. Select criteria includes anding and the columns name have a space b/w them as you can see below:

int distributionLineIdex = import.VendorInvoiceLineDetailTable.Select    
       ("Number='AMEX0311_00011' and Line number='001'").Count();

I am getting the following exception :

Syntax error: Missing operand after 'number' operator.

enter image description here What am I missing here ?

share|improve this question
Do integer fields need quotes in SQL? – smartcaveman May 3 '11 at 21:40

2 Answers

up vote 5 down vote accepted

Use

[Line Number] = '001'

instead

share|improve this answer

This is also true when the field name in DataTable is numeric. In that case use:

[2] = 7878 AND [6] = 'eee'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.