C# + SQL server stored procedure + cursor

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Im trying to use a Cursor from a stored procedure. I have found How to execute a stored procedure, but I dont know how to use a Cursor from my application.
 
There are no "cursors" per se. You need either a SqlDataReader (like a
forward only cursor) or a DataSet.

-Chris


dys said:
Hi,
Im trying to use a Cursor from a stored procedure. I have found How to
execute a stored procedure, but I dont know how to use a Cursor from my
application.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top