Re: [Firebird-net-provider] Connection problem from Win 2003 Standard Ed using .NET provider for Firebird

2007-08-16 Thread Jiri Cincura
You have probably firewall on. -- Jiri {x2} Cincura (Microsoft Student Partner) http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com - This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to

[Firebird-net-provider] CreateDatabase

2007-08-16 Thread [EMAIL PROTECTED]
Hello! FbConnection.CreateDatabase(connectionString,8192,true,false) creates an empty database but with PAGE_SIZE=4096 the version I'm using is 2.0.1.0. Is the problem corrected in most recent version? or I'm doing something wrong? Regards, ...michal

Re: [Firebird-net-provider] CreateDatabase

2007-08-16 Thread Jiri Cincura
On 8/16/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello! FbConnection.CreateDatabase(connectionString,8192,true,false) creates an empty database but with PAGE_SIZE=4096 the version I'm using is 2.0.1.0. Is the problem corrected in most recent version? or I'm doing something wrong?

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Cosmin Sandu
There is no firewall on. There are a bunch of applications written in Delphi 7 which connect directly with the interbase server on port 3050. The only problem I have is with applications which connects using FBProvider and only from the respective machine. All the services are started, the

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Carlos Guzmán Álvarez
Hello: I forgot to mentioned another particular thing about the Windows 2003 machine. It has 2 network adapters (one connects to the LAN the other to a NAS storage). I've tried even to set to disable the network adapter to the NAS. No change. No connection... It maybe a network problem

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Jiri Cincura
On 8/16/07, Cosmin Sandu [EMAIL PROTECTED] wrote: There is no firewall on. There are a bunch of applications written in Delphi 7 which connect directly with the interbase server on port 3050. The only problem I have is with applications which connects using FBProvider and only from the

Re: [Firebird-net-provider] System.Transaction Integration

2007-08-16 Thread Thomas Kr
OK, got it: (e) Because FbConnections cannot be enlisted dynamically but only during Open(), the prepared command will not need to have the Transaction property set as it always takes the current enlisted transaction from the connection during Prepare(). It also means to me, that

Re: [Firebird-net-provider] System.Transaction Integration

2007-08-16 Thread Carlos Guzmán Álvarez
Hello: (b) If Enlist=true is given during Open(), but no System.Transaction is returned from System.Transaction.Current, the data provider crashes. There some changes on that in the SVN sources for v2.1.0 (c) The isolation level is hard wired to be ReadCommitted, despite what the

Re: [Firebird-net-provider] System.Transaction Integration

2007-08-16 Thread Thomas Kr
Hi Carlos, thanks for the code+clarifications. Is there any hope for dynamic enlistment to be implemented? Thomas Carlos Guzmán Álvarez [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello: (b) If Enlist=3Dtrue is given during Open(), but no System.Transaction is = returned

Re: [Firebird-net-provider] Connection problem from Win 2003 Standard

2007-08-16 Thread Cosmin Sandu
The database server is a Linux machine. I wouldn't know how to develop a server (using sockets) that runs on Linux so I could test the connection using sockets, but I don't think that the problem comes from here, since there are some Delphi - Interbase apps on the same Windows 2003 machine that

Re: [Firebird-net-provider] System.Transaction Integration

2007-08-16 Thread Carlos Guzmán Álvarez
Hello: isolation levels with Firebird although that would easily be possible. I will try to review this one. Hope, i have this one fixed in my local tree ( on v2.5 sources for now ) -- Carlos Guzmán Álvarez Vigo-Spain Blog: http://carlosga.wordpress.com/ FirebirdClient

[Firebird-net-provider] [FB-Tracker] Created: (DNET-110) Start enlisted transaction using the correct isolation level

2007-08-16 Thread Carlos Guzman Alvarez (JIRA)
Start enlisted transaction using the correct isolation level Key: DNET-110 URL: http://tracker.firebirdsql.org/browse/DNET-110 Project: .NET Data provider Issue Type: Improvement

Re: [Firebird-net-provider] Connection problem from Win 2003 Standard

2007-08-16 Thread Jiri Cincura
What is CAS on C# application on server? It's full trust or some limited? -- Jiri {x2} Cincura (Microsoft Student Partner) http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com - This SF.net email is sponsored by:

[Firebird-net-provider] [FB-Tracker] Created: (DNET-111) Change charsets of web-scripts

2007-08-16 Thread Jiri Cincura (JIRA)
Change charsets of web-scripts -- Key: DNET-111 URL: http://tracker.firebirdsql.org/browse/DNET-111 Project: .NET Data provider Issue Type: Improvement Components: ASP.NET Providers

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Cosmin Sandu
It's a fresh installation, so there was nothing modified in the CAS Settings. Should I give it a try with the DDEX Provider instead of FIBConnection? Jiri Cincura [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] What is CAS on C# application on server? It's full trust or some

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Ottmar Muckenfuss
try to use localhost before your database path on the connection string eg: localhost:c:\my-db.fdb 2007/8/16, Cosmin Sandu [EMAIL PROTECTED]: There is no firewall on. There are a bunch of applications written in Delphi 7 which connect directly with the interbase server on port 3050. The only

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Jiri Cincura
On 8/16/07, Ottmar Muckenfuss [EMAIL PROTECTED] wrote: try to use localhost before your database path on the connection string eg: localhost:c:\my-db.fdb localhost? If DB server is linux and client server W2k3? I don't think, this is the right way. ;) -- Jiri {x2} Cincura (Microsoft Student

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Cosmin Sandu
My connection string looks like this: User=SYSDBA;Password=test;Database=/opt/interbase/test.gdb;DataSource=192.168.100.55; I also tried appending this to it, but with no luck: Port=3050;Dialect=3;Charset=NONE;Role=;Connection lifetime=15;Pooling=true;MinPoolSize=0;MaxPoolSize=50;Packet

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Carlos Guzmán Álvarez
Hello: The database server is a Linux machine. I wouldn't know how to develop a server (using sockets) that runs on Linux so I could test the connection using sockets, but I don't think that the problem comes from here, since there are some *Delphi* - Interbase apps on the same Windows

Re: [Firebird-net-provider] Connection problem from Win 2003

2007-08-16 Thread Eduardo
Hi Just one idea. I think it is a good idea to use aliases. to resolve the path, when you are working between diferent S.O. Edit - aliases.conf Add entry - MyDataBase = /opt/interbase/test.gdb sConnectionString = @ServerType=0;DataSource=192.168.100.55;Port=3050;DataBase=MyDataBase

Re: [Firebird-net-provider] Problems with visual parts of provider

2007-08-16 Thread Jiri Cincura
The .Designer.cs file is AFAIK handled by VS only. FirebirdClient has no change to change something in it. And the AddRange method in provider works (should) without problem, it's trival. BTW are you using FBCommand etc. directly on form? The old design time support will be (is) removed. Maybe