-Windows XP

-Microsoft Visual Studio 2005
  Version 8.0.50727.762  (SP.050727-7600)
  Microsoft .NET Framework
  Version 2.0.50727 SP1

  Installed Edition: Professional

-FirebirdClient 2.5.00



Hello,

this is my very first project with FirebirdClient - ADO.NET 2.5.0.0 Data 
Provider in VS2005.

First I create a connection string by a FbConnectionStringBuilder :

...
       FbConnectionStringBuilder FConBuilder;
       String CS;

       FConBuilder = new FbConnectionStringBuilder();
       FConBuilder.DataSource = "localhost";
       FConBuilder.Port = 3050;
       FConBuilder.Pooling = true;
       FConBuilder.Database = myDatabase;
       FConBuilder.ClientLibrary = "fbClient.dll";
       FConBuilder.Password = "sysdba";
       FConBuilder.UserID = "masterkey";
       FConBuilder.Charset = "Utf8";
       FConBuilder.Dialect=3;

       CS = FConBuilder.ConnectionString;

       myConnection = new FbConnection(CS);
       myConnection.Open();

At this point I receive an exception :

"No message for error code 335544472 found"

In the output window of the VS2005 IDE, I can see the following messages 
too :

A first chance exception of type 
'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll

A first chance exception of type 'FirebirdSql.Data.Common.IscException' 
occurred in FirebirdSql.Data.FirebirdClient.dll

A first chance exception of type 
'FirebirdSql.Data.FirebirdClient.FbException' occurred in 
FirebirdSql.Data.FirebirdClient.dll

A first chance exception of type 
'FirebirdSql.Data.FirebirdClient.FbException' occurred in 
FirebirdSql.Data.FirebirdClient.dll


Is the Installation of my FireClient incorrect?


Any help is appreciated.


With best regards - Ulrich Groffy



------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to