Re: [Firebird-net-provider] TransactionScope support

2007-03-14 Thread Jon Ege Ronnenberg
Yes, that explains a lot. When IEnlistmentNotification is implemented the provider supports the two-phase commit protocol ie. commit or rollback. What happens in .NET 2.0 is that an Lightweight Transaction Manager (LTM) monitors the transaction and promotes the transaction if the transaction start

Re: [Firebird-net-provider] TransactionScope support

2007-03-14 Thread Jiri Cincura
Jon Ege Ronnenberg wrote: > servers. Can anyone please tell me if the firebird provider (v. 2.0.1.0 > ) support IPromotableSinglePhaseNotification or which No. Provider has implementetation for IEnlistmentNotification (but I don't know if this info helps you). -- Jiri {x2} Ci

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Jiri Cincura
Dan Cooperstock wrote: > I'm not sure that's an entirely good enough answer, Jiri. For one thing, > without viewing the source, there's no way to know even what the > implementations of the .NET interfaces are named (like FbConnection etc.) > Also, I suspect some of the interfaces are optional, and

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Dan Cooperstock
Despite the fact this is not for the current version, it's very helpful. Are there links to this somewhere that I missed? How about putting it on the main Firebird documentation page? Thanks - Dan. -Original Message- Hello Dan, sure, there is. Try this: http://www.dotnetfirebird.org/

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Dan Cooperstock
I'm not sure that's an entirely good enough answer, Jiri. For one thing, without viewing the source, there's no way to know even what the implementations of the .NET interfaces are named (like FbConnection etc.) Also, I suspect some of the interfaces are optional, and it's good to know which ones a

[Firebird-net-provider] TransactionScope support

2007-03-14 Thread Jon Ege Ronnenberg
Hi all! I'm using TransactionScope and having trouble getting it to work with the firebird provider (v. 2.0.1.0). I saw in one of the forum postings that I have to set Enlist=true in my connection string but no rollback happends when the transaction goes to DTC (Distributed Transaction Coordinato

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Jiri Cincura
CStuhldreier (GMX) wrote: > Hello Dan, > > sure, there is. Try this: > > http://www.dotnetfirebird.org/documentation/api/1.7/index.html > It's a 1.7 version. It's not the HEAD. It's kept for .NET 1.1 FW. -- Jiri {x2} Cincura http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com -

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Jiri Cincura
Dan Cooperstock wrote: > Maybe this is a stupid question, but is there any API documentation for the > .NET provider? Current version of provider is based on ADO.NET 2.0 interfaces. So there's no need to have any (special) documentation. It's same for all ADO.NET providers (except some special

Re: [Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread CStuhldreier (GMX)
Hello Dan, sure, there is. Try this: http://www.dotnetfirebird.org/documentation/api/1.7/index.html Regards, Christoph - Original Message - From: "Dan Cooperstock" <[EMAIL PROTECTED]> To: "'For users and developers of the Firebird .NET providers'" Sent: Wednesday, March 14, 2007 3:59

[Firebird-net-provider] Documentation for the .NET Provider?

2007-03-14 Thread Dan Cooperstock
Maybe this is a stupid question, but is there any API documentation for the .NET provider? --- Dan Cooperstock DONATION web site: http://www.FreeDonationSoftware.org DONATION Support forums: http://forums.FreeDonationSoftware.org E-mail: mailto:[EMAIL PROTECTED] Home Phone

Re: [Firebird-net-provider] Using firebird without DDEX the right way...

2007-03-14 Thread Daniel Hahn
Hello, I did the following implementation: FBDA_M_IO = New FirebirdSql.Data.FirebirdClient.FbDataAdapter() FBDA_M_IO.TableMappings.Add("IO", "IO") FBCMD_M_IO_SELECT = New FbCommand("SELECT * FROM IO", FBConnection_MDB) FBDA_M_IO.SelectCommand = FBCMD_M_IO_SEL