Handling cursor pointers...

wyrd

Well-known member
Joined
Aug 23, 2002
Messages
1,408
Location
California
Can .NET (C# specifically) handle a pointer to a cursor thats returned from either a UDF or Procedure (OUTPUT) from within SQL Server? If so where can I find some information on this?
 
ADO.NET doesnt support cursors to any great extent, although the Oracle provider does include reference cursors, which will most likely be of little use to you.
 
Well thats just sucky. I was at least hoping for an option to deal with cursors via pointers. Are there any sorts of hacks that I could look into for dealing with returned cursor pointers?
 
Not that I am aware of, no. However if you provide us with some details Im sure an alternative solution could be established.
 
I wasnt talking about any problem I was having in particular, it was just more of a curious thing for future reference. Just about everything I can think of that would require a cursor can be done within a stored procedure or UDF, so I suppose in the end it doesnt really matter. But still, it would of been good info to know "just in case."
 
Back
Top