Re: [Firebird-net-provider] Embedded in Web Application

2006-09-06 Thread Jiri Cincura
[EMAIL PROTECTED] wrote: > Hi, > > I keep getting this error message when attempting to use Firebird Embedded > with > a web application. What could be wrong? > > System.DllNotFoundException: Unable to load DLL 'fbembed': The specified > module > could not be found. (Exception from HRESULT: 0x8

Re: [Firebird-net-provider] Embedded server is much slower than classic/superserver

2006-09-06 Thread Marvin Cook
I am processing a dataset with 100,000 + records (around 70MB) which I select 26,000+ into a datagrid.  Works very fast.  I recomment that you read the records into a datatable and then process that table.  The reader may be buffering the data which causes more DB hits. MarvOn 9/6/06, Jaroslaw Zyci

Re: [Firebird-net-provider] Transaction

2006-09-06 Thread Carlos Guzmán Álvarez
Hello: > Can somebody share sample code, how to make Transaction using DataSet. All > available examples I've seen were using > FbConnection,FbTransaction,FbCommand, etc. > > I'm using VS2005 with desktop application and FBClient Ver2. Can you please explain in detail what is what you want to do ??

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Carlos Guzmán Álvarez
Hello: > If I try to install the firebird 1.7 components in Sharpdevelop 2 > they get installed but when I drop the components in a form I get many > exceptions and the IDE closes, so I decided to use Firebird 2.0 but i > get this new problem. What exceptions ?? Is the same happening under Visu

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Carlos Guzmán Álvarez
Hello: > I get the error: > Unhandled Exception: System.NotImplementedException: The requested > feature is no > t implemented. > in <0x0001d> System.Data.Common.DbDataAdapter:set_SelectCommand ( > System.Data.Com > mon.DbCommand value) > in <0xd> > FirebirdSql.Data.

Re: [Firebird-net-provider] Embedded server is much slower than classic/superserver

2006-09-06 Thread Carlos Guzmán Álvarez
Hello: > I tried setting FetchSize and PacketSize in connection string that probably > has no effect. PacketSize will have effect only when working against the standalone server. > I spent hours on googling for the solution, but the only thing that I found > is the fact that embedded server fetch

[Firebird-net-provider] Embedded in Web Application

2006-09-06 Thread db.subscriptions
Hi, I keep getting this error message when attempting to use Firebird Embedded with a web application. What could be wrong? System.DllNotFoundException: Unable to load DLL 'fbembed': The specified module could not be found. (Exception from HRESULT: 0x8007007E). Your guidance would be appreciated

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Emiliano Sutil
2006/9/6, Oleg Deribas <[EMAIL PROTECTED]>: Hello,Emiliano Sutil said the following on 06.09.2006 14:12:> isnt there any way to use Firebird 2.0 with mono to solve this or is> better that I use Firebird 1.0 and use the clases without the visual > components?You can use firebird 2.0 with mono via pr

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Oleg Deribas
Hello, Emiliano Sutil said the following on 06.09.2006 14:12: > isnt there any way to use Firebird 2.0 with mono to solve this or is > better that I use Firebird 1.0 and use the clases without the visual > components? You can use firebird 2.0 with mono via provider 1.7. Personally, I've never u

[Firebird-net-provider] Embedded server is much slower than classic/superserver

2006-09-06 Thread Jaroslaw Zycinski
Folks, I have a relatively small database, the biggest table ("myTable") is 23 000 records, aprox. size 5MB. I use a basic query: SELECT * FROM myTable, I execute it and then I process each row: while (reader.Read()) { // process each row } Using classic server it works perfectly fine, but

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Emiliano Sutil
It is currently possible to use provider's 1.7 version with mono. ok, thats right, I have tested the Firebird 1.7 and you are right, it works but I have a problem when I use 1.7 version with sharpdevelop 2.If I try to install the firebird 1.7 components  in Sharpdevelop 2 they get installed but

Re: [Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Oleg Deribas
Hello, Emiliano Sutil said the following on 06.09.2006 13:33: > If I run the application without mono it runs ok. So is there any > incompatibilty with Firebird provider and mono? It is currently possible to use provider's 1.7 version with mono. -- Oleg ---

[Firebird-net-provider] fbdataAdapter mono problem

2006-09-06 Thread Emiliano Sutil
HelloI have developed a litle application using sharpdevelop that to uses Firebird 2.0 to connect to a firebird database.If I compile the project it compiles ok, but when I run the applcaion using the command: mono BBDD1.exe I get the error:Unhandled Exception: System.NotImplementedException: The r