Hi again
I have checked the link you provided, and I still can't figure out - how do I call a function that returns an array.
this
select * from table(p$crm.crm$cdmuser_pgo.hent_afdeling_op_ned('string param'))
I have tried
OracleCommand getForrOmr1 = new OracleCommand("select * from table(p$crm.crm$cdmuser_pgo.hent_afdelinger_op_ned('" + rekvirent[0][4] + "'))");
IRetrievalQuery retrComm = new RetrievalQuery(getForrOmr1);
[b]string afdeling = (string)adapter.ExecuteScalarQuery(retrComm);[/b]
the sql executes fine, but the sql returns a table when I execute it manually, but here it always just returns a string.
I tried using ExecuteMultiDataTableQuery at some point, but it needs some FieldPersistenceInfo that I did not know how to create.
Thanks Kasper