I have a stored procedure in Oracle that returns result set(s) via OUT parameter(s) of type 'SYS_REFCURSOR'.
I need to get the column information of this result set via ADO.NET. I execute the stored procedure by creating the parameters (OracleParameter.OracleDbType = OracleDbType.ReCursor etc) and calling 'OracleCommand.ExecuteReader'(CommandBehavior.SchemaOnly). I then call 'reader.GetSchemaTable' on the resultant reader to obtain the DataTable that describes the schema of the result set.
OracleCommand command = oracleConnection.CreateCommand();
command.CommandText = "ProcedureName";
command.CommandType = System.Data.CommandType.StoredProcedure;
OracleParameter refParameter = command.CreateParameter();
refParameter.Name = "refCursorParam";
refParameter.Direction = System.Data.ParameterDirection.Output;
refParameter.OracleDbType = OracleDbType.ReCursor;
command.Parameters.Add(dbParameter);
var reader = command.ExecuteReader(System.Data.CommandBehavior.SchemaOnly);
var dataTable = reader.GetSchemaTable();
My problem is that the information for each column of the result set is incomplete. I have no information about the column's oracle data type (I do get the column name,nullability,length etc). Only type information I get is the CLR type that column can be mapped to.
Am I doing something wrong or is there a better approach to get the column information for a result set returned via an OUT ref cursor?