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.

My code :

int key = 0;
            //get primary key of inserted row
            key = db.Query("SELECT max(event_id) FROM event where title=" + cevent.title +  "AND description=" + cevent.description + "AND event_start=" + cevent.start  + "AND event_end=" + cevent.end);

Error message :

Cannot implicitly convert type 'System.Collections.Generic.IEnumerable' to 'int'

I am using C#, WebMatrix and SQL Server. WebMatrix. If I try and run ExecuteScalar instead of Query, I get

'WebMatrix.Data.Database' does not contain a definition for 'ExecuteScalar'

Does anyone know what I can do to fix my code?

share|improve this question
maybe db.Query returns an IEnumerable instead of int?? the error message is clear. – vulkanino Mar 3 '12 at 17:58

2 Answers

up vote 0 down vote accepted

It sounds like you want Database.QueryValue instead.

// No need to declare it beforehand...
int key = (int) db.QueryValue(...);

And as in your previous question, you should absolutely not be embedding the query parameter values within the SQL.

Database.QueryValue is documented as:

Executes a SQL query that returns a single scalar value as the result.

... which sounds exactly right to me. It would be worth browsing through the docs - they're not very detailed, but it would at least show you what's available.

share|improve this answer
Don't worry, this will be fixed after I get it working! Many thanks for the response : – Simon Kiely Mar 3 '12 at 17:59

Your key is integer you can not cast an integer System.Collections.Generic.IEnumerable, as message climes.

If yuo are sure that there is only one result, write something like this:

 key = (int)db.Query("SELECT max(event_id) FROM event where title=" + 
                           cevent.title +  "AND description=" + 
                           cevent.description + "AND event_start=" + 
                           cevent.start  + "AND event_end=" + cevent.end).
                           FirstOrDefault();

Should be enough to you.

share|improve this answer
If you're sure there is only one result, then SingleOrDefault() would be more appropriate than FirstOrDefault(). – BACON Mar 3 '12 at 20:13

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.