Click here to Skip to main content
15,896,912 members
Please Sign up or sign in to vote.
2.33/5 (2 votes)
See more:
What is the difference between ExecuteReader and ExecuteResultSet in SQL CE (SqlCeCommand object)?

I see here discussion/comparisons of ExecuteNonQuery, ExecuteReader, and ExecuteScalar, but what about ExecuteResultset?
Posted

1 solution

A resultset is updateable, the reader would be your default choise in most cases as inserts could be done in other ways, but the resultset can do stuff the reader cannot
http://msdn.microsoft.com/en-us/library/zcfxd5se(v=vs.100).aspx[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900