Hello

I need to migrate an application written in C sharp that connects to an oracle database to Postgres.

Having issues with out parameters.

I have two parameters abc and xyz. Xyz is an out parameter.

The code for oracle uses the following line to create a parameter.

Var xyz = database.create parameter(xyz, refcursor, parameterdirect ion.output,null ).

But...