Can the Oracle managed driver use async/await properly?

No. The managed driver does not support async / await.

You can call those methods, since they must be implemented to comply with the interface definition, but the code is actually synchronous. You can use Task.Run if you want to, but you can’t have two calls at the same time (Oracle will threat them synchronous).

Leave a Comment