Found a parameter that I can not understand. On the site orakla described as:
Using the ActionName property for a given OracleConnection object.
used when creating a connection like this:
private void InitConnection() { if (null == connection_) { connection_ = new OracleConnection(connection_string_); connection_.Open(); if (!String.IsNullOrEmpty(action_name_)) { // ActionName ΠΏΠΎΡΠ²ΠΈΠ»ΡΡ ΡΠΎΠ»ΡΠΊΠΎ Π² 11.1.0.7.0 - ΠΏΠΎΡΡΠΎΠΌΡ Π΄ΠΈΠ½Π°ΠΌΠΈΡΠ΅ΡΠΊΠΈ ΡΡΡΠ°Π½Π°Π²Π»ΠΈΠ²Π°Π΅ΠΌ var action_name_prop = connection_.GetType().GetProperty("ActionName"); if (null != action_name_prop) { action_name_prop.SetValue(connection_, action_name_, null); } } } } The code was written for a long time and not by me, I try to make out some nuances, but the description
ActionName property to set the action name
It seems to me extremely foggy. Who thread came across? Why is it even needed?