> First
> i put this files
> FirebirdSql.Data.Firebird.dll
> fbembed.dll - FB1.5.5
> 
> in "/bin" dir - the same error
> i try move this files up to "/" dir
> and problem is the same - i miss some files?
> 
> becaouse of problem with FB1.5
> i try with FB2.1
> i copy
> FirebirdSql.Data.FirebirdClient.dll
> fbembed.dll - 2.1.2
> and dir intl to "/bin" dir of my ASP .Net page
> but problem is the same
> error occure after this simple line
> Var con: Firebird.Data.Firebird.FBConnection;
> begin
>     con:= Firebird.Data.Firebird.FBConnection.Create;
> 
> i miss somethink?
> please help

[PM] 
I use something like this
 
                FbConnectionStringBuilder fbcs = new
FbConnectionStringBuilder();

            fbcs.Database = apppath + @"\path to my database ";
            fbcs.Charset = "NONE";
            fbcs.ClientLibrary = apppath + @"\fb\fbembed.dll";
            fbcs.Dialect = 3;
            fbcs.UserID = "SYSDBA";
            fbcs.Password = "masterkey";
            fbcs.Pooling = false;
            fbcs.ServerType = FbServerType.Embedded;

            DataTable dt = new DataTable();
            using (FbConnection fb = new FbConnection(fbcs.ToString()))
            {
                try
                {
                    fb.Open();.....
Regards,
Paul



------------------------------------------------------------------------------
Register Now & Save for Velocity, the Web Performance & Operations 
Conference from O'Reilly Media. Velocity features a full day of 
expert-led, hands-on workshops and two days of sessions from industry 
leaders in dedicated Performance & Operations tracks. Use code vel09scf 
and Save an extra 15% before 5/3. http://p.sf.net/sfu/velocityconf
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to