I think nothing's wrong with the connection because when I open it, it does not throw any error. So I guess the error is when I'm executing a command. This is my code:

OleDbCommand cmd = new OleDbCommand("SELECT * FROM cars", conn);
cmd.CommandType = CommandType.Text;
int numbers = cmd.ExecuteNonQuery();

I tried using a message box to display the value of numbers but the result is always 0. The table cars contains 5 records. So why am I not getting the correct results?..

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

To the anonymous downvoter, the key part of the OP:

I tried using a message box to display the value of numbers but the result is always 0. The table cars contains 5 records. So why am I not getting the correct results?..

The OP is obviously trying to get a count of records in the table (a scalar aggregate) and not all of the table data.

My answer:

That's because your query is returning a table and not a scalar value and you're calling the incorrect function. Your query should be should be:

"SELECT COUNT(*) FROM cars"

And ExecuteNonQuery doesn't actually expect any results to be returned. (You usually run insert, update and delete operations with ExecuteNonQuery.) You should be using ExecuteScalar which expects a single-valued result such as count(*).

All together now:

OleDbCommand cmd = new OleDbCommand("SELECT count(*) FROM cars", conn);
cmd.CommandType = CommandType.Text;
int numbers = cmd.ExecuteScalar();
link|improve this answer
For a select * query like he has shown ExecuteScalar does not help. – Davide Piras Oct 14 '11 at 16:26
Cool! Nice! Can't Accept yet though, it tells me "You can accept an answer after 6minutes". hehe Anyways, Thank you! But how can I get the different fields for example id, names and such?.. – jovhenni19 Oct 14 '11 at 16:28
@DavidePiras: If you read the question closely you'll see that the query is not correct. The OP is trying to get an aggregate... a count of records in the table. – Paul Sasik Oct 14 '11 at 16:28
A down vote? Please do share. – Paul Sasik Oct 14 '11 at 16:33
No because question is unclear and he mentions numbers but not clearly aggregates... I didnt vote you down anyway. – Davide Piras Oct 14 '11 at 16:37
show 2 more comments
feedback

Try using ExecuteScalar that should give you the count. ExecuteNonQuery doesn't return the results from your query. The return your looking at indicates how many rows were affected by your statement, in your case zero.

link|improve this answer
As @Paul Sasik points out, it should be Count(*) – orn Oct 14 '11 at 16:24
feedback

ExecuteNonQuery as the name tells you does not make a query. it is normally used for inserts or updates and returns the number of affected records. for the query you provided you should use ExecuteReader or a DataAdapter and its Fill method to fill a datatable.

link|improve this answer
feedback

Because you are executing a query, and ExecuteNonQuery returns the number of rows effected, which when you select is always 0 since you aren't changing anything (ie. INSERT,UPDATE or DELETE)

link|improve this answer
feedback

ExecuteNonQuery only returns the number of rows affected for UPDATE, DELETE or INSERT operations. For the number of rows in the SELECT statement, try:

OleDbCommand cmd = new OleDbCommand("SELECT * FROM cars", conn);
OleDbDataReader reader = cmd.ExecuteReader();

int numbers = 0;
while (reader.Read())
{
    //// other Reader-related operations here...

    numbers++;
}
link|improve this answer
But this is really bad if he needs a count should count in SQL not client side looping of all records! – Davide Piras Oct 14 '11 at 16:39
Agreed, a COUNT is much better, though am I assuming the OP may want to use the result set for other purposes. – robyaw Oct 14 '11 at 17:11
feedback

Your Answer

 
or
required, but never shown

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