FbDataReader.GetBytes does not work 
------------------------------------

                 Key: DNET-181
                 URL: http://tracker.firebirdsql.org/browse/DNET-181
             Project: .NET Data provider
          Issue Type: Bug
          Components: ADO.NET Provider
    Affects Versions: 2.5.0 Alpha 2
         Environment: Firebird 2.1.1
Windows
            Reporter: Fabiano Rezende
            Assignee: Jiri Cincura


try this:

CREATE TABLE T (
   F1  VarChar(80)
);


long len = dr.GetBytes(0, 0, null, 0, int.MaxValue);
byte[] buffer = new byte[len];
dr.GetBytes(0, 0, buffer, 0, (int)len); 



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to