Hello:
I use Firebird .NET Provider with Enterprise Library 2.0. There are overloaded methods: Database.ExecuteReader() with IDataReader (FbDataReader in my case) as return value.

Code from one of overloaded methods:
public IDataReader ExecuteReader(CommandType commandType, string commandText)
{
     IDataReader reader1;
using (DbCommand command1 = this.CreateCommandByCommandType(commandType, commandText))
     {
           reader1 = this.ExecuteReader(command1);
     }
     return reader1;
}
I can modify and recompile your code for my purpose but this don't fix this problem.

If that is allowed by other providers we can try to take a look at that ... huummmmmmmmmmmmmm

--
Carlos Guzmán Álvarez
Vigo-Spain

http://carlosga.blogspot.com/



-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to