[Mono-bugs] [Bug 526423] New: FirebirdSql.Data.Firebird Release 1.7.2 is Now Available

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Jul 29 12:04:22 EDT 2009


http://bugzilla.novell.com/show_bug.cgi?id=526423


           Summary: FirebirdSql.Data.Firebird Release 1.7.2 is Now
                    Available
    Classification: Mono
           Product: Mono: Class Libraries
           Version: 2.4.x
          Platform: All
        OS/Version: Windows XP
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Sys.Data
        AssignedTo: bnc-blr-team-mono at forge.provo.novell.com
        ReportedBy: jd at justdoro.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: Third Party Developer/Partner


Description of Problem:

FirebirdSql.Data.Firebird version 1.7.2 is now available.  This release fixes a
bug when connecting to Firebird 2.1 or above.


Steps to reproduce the problem:
1. Connect to a Firebird 2.1 server using the 1.7.1 driver.
2. Program will throw exception.


Actual Results:

Error Message: "Offset and length were out of bounds for the array or count is
greater than the number of elements from index to the end of the source
collection."


Expected Results:

Successful connection.


How often does this happen? 

Every time


Additional Information:

See
http://sourceforge.net/project/shownotes.php?release_id=646932&group_id=9028

See also
http://www.ibphoenix.com/main.nfs?a=ibphoenix&page=ibp_download_dotnet; 
Look for "Version 1.7.2 for Microsoft .NET 1.1 and Mono 1.1".

using System;
using System.Collections.Generic;
using System.Data;
using System.Text;
using FirebirdSql.Data.Firebird;

namespace FBConsoleApp
{
  class Program
  {
    static void Main(string[] args)
    {
      IDbConnection dbc = new FirebirdSql.Data.Firebird.FbConnection();
      dbc.ConnectionString =
"Server=localhost;Database=employee.fdb;User=sysdba;password=masterkey";
      dbc.Open();
    }
  }
}

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list