Custom implementations of DbDataReaderAsync methods

Discussion of open issues, suggestions and bugs regarding ADO.NET provider for Oracle
Post Reply
esben
Posts: 43
Joined: Tue 05 Jul 2011 09:40

Custom implementations of DbDataReaderAsync methods

Post by esben » Tue 13 Oct 2015 06:56

Hi
Just wondering if you are considering implementing custom varieties of the DbDataReader "whatever"Async methods just as you have with the regular methods, such as ExcuteReaderAsync (returning an Task<OracleDataReader> instead of a Task<DbDataReader>) and OracleDataReader.IsDBNullAsync taking a string as input instead of the ordinal position (etc).

Pinturiccio
Devart Team
Posts: 2420
Joined: Wed 02 Nov 2011 09:44

Re: Custom implementations of DbDataReaderAsync methods

Post by Pinturiccio » Tue 13 Oct 2015 08:27

Unfortunately, the async methods, such as ExecuteReaderAsync, are not supported in dotConnect for Oracle yet. Such methods were added in the .NET Framework 4.5. dotConnect for Oracle is built with .NET Framework 2.0 and does not have such methods.

We recommend you to try implementing your scenario with the methods from this link ( http://www.devart.com/dotconnect/oracle ... onous.html ) or use any other way, which suits your needs.

We will post here when this support is implemented in dotConnect for Oracle.

Post Reply