So I would like to know if there is a way to access an Oracle function and it's return value?
The System.Data.CommandType only has a method for stored procedure:
$cmd = New-Object Oracle.DataAccess.Client.OracleCommand($procedure,$conn)
$cmd.CommandType = [System.Data.CommandType]::StoredProcedure
Anyone ever connect to a function instead and retrieve it's return value?
Thanks in advance.