Thanks you Paul,
but i see that this is a .Net 2.0 import of .Net Provider
" fbcs.ClientLibrary = apppath + @"\fb\fbembed.dll";"

i have not this property - this is problem that Turbo Delphi for .Net 
Explorer use only .Net 1.1
and with FirebirdSql.Data.Firebird.dll wich is for .Net 1.1
i get error on server with medium trust level - with full access all is ok 
:/



Uzytkownik ""Mercea Paul"" <paul.mer...@almexa.ro> napisal w wiadomosci 
news:!&!AAAAAAAAAAAYAAAAAAAAACOM/cOGjJ1HlJWkT080kT/cgaaaeaaaakqrpichkfvejc0ls1urvwqbaaaaa...@almexa.ro...
>
>> 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
> 



------------------------------------------------------------------------------
The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your
production scanning environment may not be a perfect world - but thanks to
Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700
Series Scanner you'll get full speed at 300 dpi even with all image 
processing features enabled. http://p.sf.net/sfu/kodak-com
_______________________________________________
Firebird-net-provider mailing list
Firebird-net-provider@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to