Skip to content

SleepAsnc in OracleDatabaseConnection always fails #271

@matthew-marston

Description

@matthew-marston

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);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions