1

I need to pass name value pairs containing column name and column values of table to Oracle from c#.net. How can I do this?, I did take a look at this http://my-tech-talk.blogspot.com/2010/01/how-to-pass-arrays-from-net-c-to-oracle.html not sure whether I can use this for two dimensional array.

Ollie
  • 16,534
  • 7
  • 44
  • 59
inlokesh
  • 413
  • 1
  • 8
  • 21

1 Answers1

1

You can use JSON as a mediator between C# and Oracle.

For your name/value pairs you can use a Dictionary.

Take a look at here for PL/SQL and JSON and here for C# dictionaries and JSON.

Community
  • 1
  • 1
Andrea Colleoni
  • 5,783
  • 3
  • 29
  • 48