3

I've got an oracle stored function that returns sys_refcursor as an out parameter. It's structure belike

Object

  • param1
  • param2
  • param3
  • param4_list(cursor)

I want to get param1-3 values into datatable1 and param4_list(cursor) values into datatable2 using C#. Any suggestions? If possible, show examples please.

1 Answer 1

3

Currently, there is no support for nested cursors in ODP.NET. You'll have to take a different approach. e.g. returning the rows as XML or JSON instead of in a nested cursor. Read my question on AskTom.

Sign up to request clarification or add additional context in comments.

1 Comment

This is a borderline link-only answer. You should expand your answer to include as much information here, and use the link only for reference.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.