Set DescribeStoredProcedure at runtime

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
mars
Posts: 17
Joined: Tue 14 Jul 2009 13:56

Set DescribeStoredProcedure at runtime

Post by mars » Wed 12 Aug 2020 20:26

Hello!

I use DescribeStoredProcedure parameter in my oracle connection string.
But, Is it possible to do the same at runtime?
Most connection parameters have such possibility (e.g. PassParametersByName or TrimFixedChar)


:) I'd like something like this:
var connection = db.Database.Connection as OracleConnection;
connection.PassParametersByName = true;
connection.TrimFixedChar = false;
connection.DescribeStoredProcedure = false;

Thanks

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: Set DescribeStoredProcedure at runtime

Post by Shalex » Thu 13 Aug 2020 17:48

The current version of dotConnect for Oracle includes the DescribeStoredProcedure connection string parameter: https://www.devart.com/dotconnect/oracl ... tring.html.

mars
Posts: 17
Joined: Tue 14 Jul 2009 13:56

Re: Set DescribeStoredProcedure at runtime

Post by mars » Thu 13 Aug 2020 22:32

Yes, I wrote that I used it.
But there is no DescribeStoredProcedure property in OracleConnection class.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: Set DescribeStoredProcedure at runtime

Post by Shalex » Thu 20 Aug 2020 13:55

We will notify you when the property OracleConnection.DescribeStoredProcedure is implemented.

Shalex
Site Admin
Posts: 9543
Joined: Thu 14 Aug 2008 12:44

Re: Set DescribeStoredProcedure at runtime

Post by Shalex » Mon 21 Sep 2020 15:06

The new DescribeStoredProcedure property is added to the OracleConnection class: viewtopic.php?f=1&t=42246.

Post Reply