Re: [Firebird-net-provider] FbDataReader.Read() throws exception where

2007-06-12 Thread Thomas Damme
FB-Provider act like the other providers? Regards, Thomas Thomas Damme schrieb: > Hello, > > I used the following code successfully with SQLite and ODBC: > > IDbDataReader reader; > using(IDbCommand cmd = new FbCommand("Select * from imports where status > =

[Firebird-net-provider] FbDataReader.Read() throws exception where DbDataReader does not

2007-06-08 Thread Thomas Damme
Hello, I used the following code successfully with SQLite and ODBC: IDbDataReader reader; using(IDbCommand cmd = new FbCommand("Select * from imports where status = 0;")){ reader = cmd.ExecuteReader(); } while(reader.Read()){ (...) } But with the Firebird.NET-driver it gives me an exce