Re: [Firebird-net-provider] (no subject)

2006-09-10 Thread Balla Imre
> adapter.Fill(ds); //Here the program is locked and the method never returns, > no exception is throwed I had the same problem with embedded server, when I used character set and collations, because I did not copy the intl directory to the proper place. Maybe this can be also the case for you som

Re: [Firebird-net-provider] Exception when running a query

2006-09-10 Thread Julien Ferraro
xu yuan a écrit : > > please paste your code here.   Well, it's a rather long piece of code and you must have the database as the problem occurs on just some of my customers databases, not all ...   Anyway Carlos, compressed it with 7-Zip, and instead of 35 Mb, the size was 19 Mb, bu

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

2006-09-10 Thread xu yuan
you must start a transaction,it will run faster.trans = cnn.BeginTransaction();while (reader.Read()){ // process each row}trans.Commit();2006/9/7, Marvin Cook < [EMAIL PROTECTED]>: I am processing a dataset with 100,000 + records (around 70MB) which I select 26,000+ into a datagrid.  Works very fa

Re: [Firebird-net-provider] Exception when running a query

2006-09-10 Thread xu yuan
please paste your code here.2006/9/9, Carlos Guzmán Álvarez <[EMAIL PROTECTED]>: Hello: Carlos, I can send you the test project and the database. The only> problem is that the database is 35 Mb (after backup and zip), but I> can put it on a FTP if you want >Huu an ISQL script is as heavy as

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

2006-09-10 Thread xu yuan
you can drop the Firebird .Net Driver from GAC,and put them to web's bin folder,include fbembed.dll and other necessary files. 2006/9/9, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: Thanks greatly (Cincura & Oleg).1.  I dropped the fbembed.dll in systems folder and it worked well. I still have not b

Re: [Firebird-net-provider] (no subject)

2006-09-10 Thread xu yuan
how many rows in your table? it may be slowly when a lot of rows in your table  2006/9/9, Carlos Guzmán Álvarez <[EMAIL PROTECTED] >: Hello:>> I'm sure that the C# code is ok, I have execute the query with other> data and it go ok.>> I'm using Firebird Server 1.5 and Firebird Net Provider 1.6>Can y