You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using var sleepCommand = this.CreateCommand(); sleepCommand.SetCommandText("BEGIN sys.DBMS_SESSION.SLEEP(:seconds) END;"); sleepCommand.AddParameter("seconds", sleepTime.TotalSeconds);
should be
using var sleepCommand = this.CreateCommand(); sleepCommand.SetCommandText("BEGIN sys.DBMS_SESSION.SLEEP(:seconds); END;"); sleepCommand.AddParameter("seconds", sleepTime.TotalSeconds);
SleepAsync will always fail:
using var sleepCommand = this.CreateCommand(); sleepCommand.SetCommandText("BEGIN sys.DBMS_SESSION.SLEEP(:seconds) END;"); sleepCommand.AddParameter("seconds", sleepTime.TotalSeconds);should be
using var sleepCommand = this.CreateCommand(); sleepCommand.SetCommandText("BEGIN sys.DBMS_SESSION.SLEEP(:seconds); END;"); sleepCommand.AddParameter("seconds", sleepTime.TotalSeconds);