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.
 
Back
Top