Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Alex Castillo
Hello, What are your FBserver, openvpn and fbclient versions? I'd like to try using the same versions. I'm using Win2003 server std and regional setting is Spanish(Mexico). Any idea? --- Oleg Deribas <[EMAIL PROTECTED]> escribió: > Jiri Cincura wrote: > > >> On my LAN the same code is OK. Thi

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Oleg Deribas
Jiri Cincura wrote: >> On my LAN the same code is OK. This issue just happens >> on my VPN clients and just with Date/DateTime fields. > > So it's the problem of VPN. FirebirdClient has no idea, that you're > using VPN or any other tunel. The connection is done in same way. Moreover, I'm using O

Re: [Firebird-net-provider] Membership Provider 2.1.0.0 - Error

2008-02-06 Thread Jiri Cincura
On 2/6/08, Jon Ege Ronnenberg <[EMAIL PROTECTED]> wrote: > I just got bitten by this bug again. I would really appreciate a new build > on sourceforge. Who do we have to contact? It's such a small bug but it's a > real show stopper for most people using firebird! I can send you build of WebProvide

Re: [Firebird-net-provider] Membership Provider 2.1.0.0 - Error

2008-02-06 Thread Jon Ege Ronnenberg
I just got bitten by this bug again. I would really appreciate a new build on sourceforge. Who do we have to contact? It's such a small bug but it's a real show stopper for most people using firebird! Regards, Jon. On Sep 12, 2007 4:22 AM, Trevor Watters <[EMAIL PROTECTED]> wrote: > In the absens

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Alex Castillo
I will send you a little test at night.. I will try to reproduce the same error as in my application. Thanks. --- André Knappstein, Controlling <[EMAIL PROTECTED]> escribió: > Home early this evening, and tried at once. > > Well, seemed to have forgotten that the employee.fdb > does not cont

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread André Knappstein , Controlling
Home early this evening, and tried at once. Well, seemed to have forgotten that the employee.fdb does not contain any date fields, only timestamps. But maybe this is already enough for testing? I set up a vqd (very quick and dirty) example connecting to the employee database on a server. To be q

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread André Knappstein , Controlling
Alex, I am also using OpenVPN to connect some remote clients including my home with the main building. I remember clearly that a local application could run easily using OpenVPN. I could dock the laptop into the LAN and did not have to change anything. So I would doubt that the problems are caused

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Alex Castillo
Hello André, My Fb server is 2.0.1 and I'm using the same client version in every computer on VPN. I've opened the port 3050 on my firewall and I can run the application without any problem (connecting to myserver:3050 instead of 10.7.0.X from my VPN), so definitely is the OpenVPN server, but for

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Alex Castillo
Hi Paul, Yes, FlameRobin works fine on any query. Regards. --- Mercea Paul <[EMAIL PROTECTED]> escribió: > Hi > > If you use IBExpert,DBWorkbench,FlameRobin,ISQL or > another tool can you run > without errors the select command on vpn network? > > Regards, > Paul > > > -Original Message-

Re: [Firebird-net-provider] Question obout transaction

2008-02-06 Thread Félix González
Thanks -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Jiri Cincura Enviado el: miércoles, 06 de febrero de 2008 16:45 Para: For users and developers of the Firebird .NET providers Asunto: Re: [Firebird-net-provider] Question obout transaction You have to s

Re: [Firebird-net-provider] Question obout transaction

2008-02-06 Thread Jiri Cincura
You have to specify FbTransactionOptions.NoWait when starting transaction. The default TIL/behavior has not NoWait specified. -- Jiri {x2} Cincura (Microsoft Student Partner) http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com ---

[Firebird-net-provider] Question obout transaction

2008-02-06 Thread Félix González
Hi I´ve a problem with transaction my code it´s something like: FbTransaction myTrans = Con.BeginTransaction(); try { FbCommand cm = new FbCommand(“Recibe”,Con); Cm.Transaction = myTrans; cm.CommandType = StoredPRocedure; cm.ExecuteNonQuery(); myTrans.Commit(); } catch {

Re: [Firebird-net-provider] setup problem

2008-02-06 Thread Jiri Cincura
On 2/6/08, nasim <[EMAIL PROTECTED]> wrote: > hi; > thanks for reply, > i don't understand well. i must install fb server in every machine that i > want run my project?!!?! No you have to install server on some machine - where the database will be and there will be connected clients. > what hostn

Re: [Firebird-net-provider] setup problem

2008-02-06 Thread nasim
hi; thanks for reply, i don't understand well. i must install fb server in every machine that i want run my project?!!?! what hostname is useful for myproblem? plz help me. thanks; On 2/4/08, Jiri Cincura <[EMAIL PROTECTED]> wrote: > > On 2/4/08, nasim <[EMAIL PROTECTED]> wrote: > > firebirdsql.

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Jiri Cincura
On 2/6/08, André Knappstein, Controlling <[EMAIL PROTECTED]> wrote: > I must admit that I do not know if the "normal" client.dll > (fbclient.dll or gds32.dll) still is involved when using the .net > provider. No, FirebirdClient is native implementation. It doesn't use any client library, except fo

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Jiri Cincura
On 2/6/08, Alex Castillo <[EMAIL PROTECTED]> wrote: > On my LAN the same code is OK. This issue just happens > on my VPN clients and just with Date/DateTime fields. So it's the problem of VPN. FirebirdClient has no idea, that you're using VPN or any other tunel. The connection is done in same way.

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread André Knappstein , Controlling
> On my LAN the same code is OK. This issue just happens > on my VPN clients and just with Date/DateTime fields. Alex, I must admit that I do not know if the "normal" client.dll (fbclient.dll or gds32.dll) still is involved when using the .net provider. But I had exactly the same issue as you des

Re: [Firebird-net-provider] FBException using VPN

2008-02-06 Thread Mercea Paul
Hi If you use IBExpert,DBWorkbench,FlameRobin,ISQL or another tool can you run without errors the select command on vpn network? Regards, Paul > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Alex Castillo > Sent: Wednesday, February 06, 2008 4:21