<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>Coeamyd's - ADO.NET</title>
    <link>http://www.coeamyd.net/</link>
    <description>...It ain't easy being green</description>
    <language>en-us</language>
    <copyright>Christoph Herold</copyright>
    <lastBuildDate>Fri, 28 Mar 2008 11:43:27 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 1.9.6264.0</generator>
    <managingEditor>Christoph.Herold@coeamyd.net</managingEditor>
    <webMaster>Christoph.Herold@coeamyd.net</webMaster>
    <item>
      <trackback:ping>http://www.coeamyd.net/Trackback.aspx?guid=0e890bb9-e18c-411e-909f-b0e4a3622258</trackback:ping>
      <pingback:server>http://www.coeamyd.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.coeamyd.net/PermaLink,guid,0e890bb9-e18c-411e-909f-b0e4a3622258.aspx</pingback:target>
      <dc:creator>Christoph Herold</dc:creator>
      <wfw:comment>http://www.coeamyd.net/CommentView,guid,0e890bb9-e18c-411e-909f-b0e4a3622258.aspx</wfw:comment>
      <wfw:commentRss>http://www.coeamyd.net/SyndicationService.asmx/GetEntryCommentsRss?guid=0e890bb9-e18c-411e-909f-b0e4a3622258</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
We finally got a useful response concerning the TransactionScope Timeout problem.
Someone else had a similar issue and started a new thread in the Microsoft forums: <a href="http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3069149&amp;SiteID=1">http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3069149&amp;SiteID=1</a>.
The issue has been resolved, but only as of the .NET Framework 3.5. There is a new
connection string parameter named "Transaction binding". This is set to "Implicit
unbind", which by default causes the described (mis-)behavior. Instead, you must set
it to "explicit unbind", so that queries issued after the transaction times out are
still considered to be INSIDE the transaction and not in auto-commit mode. You can
read the details in the forum post.
</p>
        <p>
Alas, this only solves the problem when using the SqlClient ADO.NET provider. For
all other transactive repositories, the issue still exists.
</p>
        <img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=0e890bb9-e18c-411e-909f-b0e4a3622258" />
      </body>
      <title>News concerning TransactionScope and Timeouts</title>
      <guid isPermaLink="false">http://www.coeamyd.net/PermaLink,guid,0e890bb9-e18c-411e-909f-b0e4a3622258.aspx</guid>
      <link>http://www.coeamyd.net/PermaLink,guid,0e890bb9-e18c-411e-909f-b0e4a3622258.aspx</link>
      <pubDate>Fri, 28 Mar 2008 11:43:27 GMT</pubDate>
      <description>&lt;p&gt;
We finally got a useful response concerning the TransactionScope Timeout problem.
Someone else had a similar issue and started a new thread in the Microsoft forums: &lt;a href="http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3069149&amp;amp;SiteID=1"&gt;http://forums.microsoft.com/forums/ShowPost.aspx?PostID=3069149&amp;amp;SiteID=1&lt;/a&gt;.
The issue has been resolved, but only as of the .NET Framework 3.5. There is a new
connection string parameter named "Transaction binding". This is set to "Implicit
unbind", which by default causes the described (mis-)behavior. Instead, you must set
it to "explicit unbind", so that queries issued after the transaction times out are
still considered to be INSIDE the transaction and not in auto-commit mode. You can
read the details in the forum post.
&lt;/p&gt;
&lt;p&gt;
Alas, this only solves the problem when using the SqlClient ADO.NET provider. For
all other transactive repositories, the issue still exists.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=0e890bb9-e18c-411e-909f-b0e4a3622258" /&gt;</description>
      <comments>http://www.coeamyd.net/CommentView,guid,0e890bb9-e18c-411e-909f-b0e4a3622258.aspx</comments>
      <category>.NET;ADO.NET;Development;SQL Server</category>
    </item>
    <item>
      <trackback:ping>http://www.coeamyd.net/Trackback.aspx?guid=cfd87034-5102-46ef-aac6-b7b5c014939f</trackback:ping>
      <pingback:server>http://www.coeamyd.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.coeamyd.net/PermaLink,guid,cfd87034-5102-46ef-aac6-b7b5c014939f.aspx</pingback:target>
      <dc:creator>Christoph Herold</dc:creator>
      <wfw:comment>http://www.coeamyd.net/CommentView,guid,cfd87034-5102-46ef-aac6-b7b5c014939f.aspx</wfw:comment>
      <wfw:commentRss>http://www.coeamyd.net/SyndicationService.asmx/GetEntryCommentsRss?guid=cfd87034-5102-46ef-aac6-b7b5c014939f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
For the time being, I have built myself a helper class, that tries to fix the "timeout-bug"
when using TransactionScope. And since I'm such a nice guy, I decided to let everyone
have it ;-)
</p>
        <p>
So here goes, completely commented including a usage example:
</p>
        <pre>using System;
using System.Threading;
using System.Transactions;

namespace Succell.Framework.Utils
{
    /// &lt;summary&gt;
    /// This class is used to abort transactions when the timeout occurs.
    /// &lt;/summary&gt;
    /// &lt;remarks&gt;
    /// &lt;para&gt;This class is required, because TransactionScopes do not abort processing, when they expire. Instead
    /// all actions done after the timeout occurs are not included in the transaction, but instead carried out
    /// normally. This can lead to inconsistencies in your data, when processing large amounts.&lt;/para&gt;
    ///
    /// &lt;para&gt;This class can be used nestedly, i.e. methods called in the supplied working delegate can safely
    /// create instances of this class.&lt;/para&gt;
    /// &lt;/remarks&gt;
    /// &lt;example&gt;&lt;code&gt;
    /// try
    /// {
    ///     using (TransactionScope ts = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0, 0, 2)))
    ///     {
    ///         new TransactionHelper(ts, delegate() {
    ///                 // do transactive work here
    ///             });
    ///         ts.Complete();
    ///     }
    /// }
    /// catch (TransactionAbortedException tae)
    /// {
    ///     // handle aborted transaction
    /// }
    /// &lt;/code&gt;
    /// &lt;/example&gt;
    public sealed class TransactionHelper
    {
        /// &lt;summary&gt;
        /// A tagging object to determine, whether the thread is aborted due to a transaction timeout
        /// &lt;/summary&gt;
        private object _abortObject;

        /// &lt;summary&gt;
        /// The current thread executing the transactive work
        /// &lt;/summary&gt;
        private Thread _currentThread;

        /// &lt;summary&gt;
        /// Creates a new TransactionHelper that executes transactive statements and aborts the process
        /// if a timeout occurs.
        /// &lt;/summary&gt;
        /// &lt;param name="toExecute"&gt;The delegate to call for processing&lt;/param&gt;
        public TransactionHelper(ThreadStart toExecute)
        {
            if (null == toExecute)
                throw new ArgumentNullException("toExecute");

            // get current transaction
            Transaction tx = Transaction.Current;

            if (null == tx)
                throw new InvalidOperationException("You must create an ambient transaction before using the TransactionHelper");

            // Don't execute, if the transaction is already aborted
            if (tx.TransactionInformation.Status != TransactionStatus.Aborted)
            {
                // keep handle to current thread for aborting
                _currentThread = Thread.CurrentThread;

                // register completion handler
                tx.TransactionCompleted += new TransactionCompletedEventHandler(Current_TransactionCompleted);

                // execute transactive code
                try
                {
                    toExecute();
                }
                catch (ThreadAbortException tae)
                {
                    // was the thread aborted by our TransactionCompleted handler?
                    if (null != _abortObject &amp;&amp; tae.ExceptionState == _abortObject)
                    {
                        Thread.ResetAbort();
                    }
                }
                // unregister completion handler (required when using multiple TxHelpers in one transaction,
                // otherwise multiple ThreadAbortExceptions are thrown on timeout)
                tx.TransactionCompleted -= new TransactionCompletedEventHandler(Current_TransactionCompleted);
            }
        }

        /// &lt;summary&gt;
        /// Transaction completion event handler, that checks, whether a timeout occured
        /// and, if so, causes the registered executing thread to abort
        /// &lt;/summary&gt;
        /// &lt;param name="sender"&gt;The originating transaction&lt;/param&gt;
        /// &lt;param name="e"&gt;The event args for this event&lt;/param&gt;
        void Current_TransactionCompleted(object sender, TransactionEventArgs e)
        {
            // Is the transaction aborted (possibly due to timeout)?
            if (e.Transaction.TransactionInformation.Status == TransactionStatus.Aborted)
            {
                // Is the executing thread registered?
                if (null != _currentThread)
                {
                    // generate a new abortion tagging object
                    _abortObject = new object();

                    // abort the executing thread
                    _currentThread.Abort(_abortObject);
                }
            }
        }
    }
}</pre>
        <p>
I hope, this helps some of you. Of course, I'll be updating my blog, as soon as some
notice of how TransactionScope is supposed to be used reaches me. I know, that ThreadAbortExceptions
aren't something to use lightly, but currently I see no other way.
</p>
        <img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=cfd87034-5102-46ef-aac6-b7b5c014939f" />
      </body>
      <title>TransactionHelper</title>
      <guid isPermaLink="false">http://www.coeamyd.net/PermaLink,guid,cfd87034-5102-46ef-aac6-b7b5c014939f.aspx</guid>
      <link>http://www.coeamyd.net/PermaLink,guid,cfd87034-5102-46ef-aac6-b7b5c014939f.aspx</link>
      <pubDate>Mon, 27 Nov 2006 10:28:20 GMT</pubDate>
      <description>&lt;p&gt;
For the time being, I have built myself a helper class, that tries to fix the "timeout-bug"
when using TransactionScope. And since I'm such a nice guy, I decided to let everyone
have it ;-)
&lt;/p&gt;
&lt;p&gt;
So here goes, completely commented including a usage example:
&lt;/p&gt;
&lt;pre&gt;using System;
using System.Threading;
using System.Transactions;

namespace Succell.Framework.Utils
{
    /// &amp;lt;summary&amp;gt;
    /// This class is used to abort transactions when the timeout occurs.
    /// &amp;lt;/summary&amp;gt;
    /// &amp;lt;remarks&amp;gt;
    /// &amp;lt;para&amp;gt;This class is required, because TransactionScopes do not abort processing, when they expire. Instead
    /// all actions done after the timeout occurs are not included in the transaction, but instead carried out
    /// normally. This can lead to inconsistencies in your data, when processing large amounts.&amp;lt;/para&amp;gt;
    ///
    /// &amp;lt;para&amp;gt;This class can be used nestedly, i.e. methods called in the supplied working delegate can safely
    /// create instances of this class.&amp;lt;/para&amp;gt;
    /// &amp;lt;/remarks&amp;gt;
    /// &amp;lt;example&amp;gt;&amp;lt;code&amp;gt;
    /// try
    /// {
    ///     using (TransactionScope ts = new TransactionScope(TransactionScopeOption.Required, new TimeSpan(0, 0, 2)))
    ///     {
    ///         new TransactionHelper(ts, delegate() {
    ///                 // do transactive work here
    ///             });
    ///         ts.Complete();
    ///     }
    /// }
    /// catch (TransactionAbortedException tae)
    /// {
    ///     // handle aborted transaction
    /// }
    /// &amp;lt;/code&amp;gt;
    /// &amp;lt;/example&amp;gt;
    public sealed class TransactionHelper
    {
        /// &amp;lt;summary&amp;gt;
        /// A tagging object to determine, whether the thread is aborted due to a transaction timeout
        /// &amp;lt;/summary&amp;gt;
        private object _abortObject;

        /// &amp;lt;summary&amp;gt;
        /// The current thread executing the transactive work
        /// &amp;lt;/summary&amp;gt;
        private Thread _currentThread;

        /// &amp;lt;summary&amp;gt;
        /// Creates a new TransactionHelper that executes transactive statements and aborts the process
        /// if a timeout occurs.
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="toExecute"&amp;gt;The delegate to call for processing&amp;lt;/param&amp;gt;
        public TransactionHelper(ThreadStart toExecute)
        {
            if (null == toExecute)
                throw new ArgumentNullException("toExecute");

            // get current transaction
            Transaction tx = Transaction.Current;

            if (null == tx)
                throw new InvalidOperationException("You must create an ambient transaction before using the TransactionHelper");

            // Don't execute, if the transaction is already aborted
            if (tx.TransactionInformation.Status != TransactionStatus.Aborted)
            {
                // keep handle to current thread for aborting
                _currentThread = Thread.CurrentThread;

                // register completion handler
                tx.TransactionCompleted += new TransactionCompletedEventHandler(Current_TransactionCompleted);

                // execute transactive code
                try
                {
                    toExecute();
                }
                catch (ThreadAbortException tae)
                {
                    // was the thread aborted by our TransactionCompleted handler?
                    if (null != _abortObject &amp;amp;&amp;amp; tae.ExceptionState == _abortObject)
                    {
                        Thread.ResetAbort();
                    }
                }
                // unregister completion handler (required when using multiple TxHelpers in one transaction,
                // otherwise multiple ThreadAbortExceptions are thrown on timeout)
                tx.TransactionCompleted -= new TransactionCompletedEventHandler(Current_TransactionCompleted);
            }
        }

        /// &amp;lt;summary&amp;gt;
        /// Transaction completion event handler, that checks, whether a timeout occured
        /// and, if so, causes the registered executing thread to abort
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="sender"&amp;gt;The originating transaction&amp;lt;/param&amp;gt;
        /// &amp;lt;param name="e"&amp;gt;The event args for this event&amp;lt;/param&amp;gt;
        void Current_TransactionCompleted(object sender, TransactionEventArgs e)
        {
            // Is the transaction aborted (possibly due to timeout)?
            if (e.Transaction.TransactionInformation.Status == TransactionStatus.Aborted)
            {
                // Is the executing thread registered?
                if (null != _currentThread)
                {
                    // generate a new abortion tagging object
                    _abortObject = new object();

                    // abort the executing thread
                    _currentThread.Abort(_abortObject);
                }
            }
        }
    }
}&lt;/pre&gt;
&lt;p&gt;
I hope, this helps some of you. Of course, I'll be updating my blog, as soon as some
notice of how TransactionScope is supposed to be used reaches me. I know, that ThreadAbortExceptions
aren't something to use lightly, but currently I see no other way.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=cfd87034-5102-46ef-aac6-b7b5c014939f" /&gt;</description>
      <comments>http://www.coeamyd.net/CommentView,guid,cfd87034-5102-46ef-aac6-b7b5c014939f.aspx</comments>
      <category>.NET;ADO.NET;Development</category>
    </item>
    <item>
      <trackback:ping>http://www.coeamyd.net/Trackback.aspx?guid=243074de-9dc5-40e0-8b66-abd939b53835</trackback:ping>
      <pingback:server>http://www.coeamyd.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.coeamyd.net/PermaLink,guid,243074de-9dc5-40e0-8b66-abd939b53835.aspx</pingback:target>
      <dc:creator>Christoph Herold</dc:creator>
      <wfw:comment>http://www.coeamyd.net/CommentView,guid,243074de-9dc5-40e0-8b66-abd939b53835.aspx</wfw:comment>
      <wfw:commentRss>http://www.coeamyd.net/SyndicationService.asmx/GetEntryCommentsRss?guid=243074de-9dc5-40e0-8b66-abd939b53835</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Someone has finally found a dirty, yet working solution to the TransactionScope problem.
You can register an event on the transaction, that fires, when the transaction finishes,
which also happens on a timeout. You can then abort the main thread, to keep further
commands from executing.
</p>
        <p>
And this is also the dirty part: ThreadAbortExceptions are a little dangerous and
can cause unexpected behavior. But for now it works for me, and as long as Microsoft
does not come up with a better solution, I'll have to use this.
</p>
        <p>
You can find more details here: <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;SiteID=1">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;SiteID=1</a></p>
        <img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=243074de-9dc5-40e0-8b66-abd939b53835" />
      </body>
      <title>TransactionScope, ADO.NET, and Timeouts</title>
      <guid isPermaLink="false">http://www.coeamyd.net/PermaLink,guid,243074de-9dc5-40e0-8b66-abd939b53835.aspx</guid>
      <link>http://www.coeamyd.net/PermaLink,guid,243074de-9dc5-40e0-8b66-abd939b53835.aspx</link>
      <pubDate>Sat, 18 Nov 2006 10:10:16 GMT</pubDate>
      <description>&lt;p&gt;
Someone has finally found a dirty, yet working solution to the TransactionScope problem.
You can register an event on the transaction, that fires, when the transaction finishes,
which also happens on a timeout. You can then abort the main thread, to keep further
commands from executing.
&lt;/p&gt;
&lt;p&gt;
And this is also the dirty part: ThreadAbortExceptions are a little dangerous and
can cause unexpected behavior. But for now it works for me, and as long as Microsoft
does not come up with a better solution, I'll have to use this.
&lt;/p&gt;
&lt;p&gt;
You can find more details here: &lt;a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;amp;SiteID=1"&gt;http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;amp;SiteID=1&lt;/a&gt;
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=243074de-9dc5-40e0-8b66-abd939b53835" /&gt;</description>
      <comments>http://www.coeamyd.net/CommentView,guid,243074de-9dc5-40e0-8b66-abd939b53835.aspx</comments>
      <category>.NET;ADO.NET;Development</category>
    </item>
    <item>
      <trackback:ping>http://www.coeamyd.net/Trackback.aspx?guid=df5d0c40-8876-45ac-abce-f05e96c9426a</trackback:ping>
      <pingback:server>http://www.coeamyd.net/pingback.aspx</pingback:server>
      <pingback:target>http://www.coeamyd.net/PermaLink,guid,df5d0c40-8876-45ac-abce-f05e96c9426a.aspx</pingback:target>
      <dc:creator>Christoph Herold</dc:creator>
      <wfw:comment>http://www.coeamyd.net/CommentView,guid,df5d0c40-8876-45ac-abce-f05e96c9426a.aspx</wfw:comment>
      <wfw:commentRss>http://www.coeamyd.net/SyndicationService.asmx/GetEntryCommentsRss?guid=df5d0c40-8876-45ac-abce-f05e96c9426a</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>
Happy Halloween everyone!
</p>
        <p>
Today I'll tell you about some problems I've been having with the TransactionScope
class. Namely, I've had timeouts running out, but the application still running the
nested queries until they were finished. Amazingly, the data seemed to be in the tables,
although the TimeoutException was thrown.
</p>
        <p>
This has now happened to me in multiple applications. But today I read an article
on the System.Transactions namespace (<a href="http://msdn.microsoft.com/msdnmag/issues/06/11/DataPoints/default.aspx">http://msdn.microsoft.com/msdnmag/issues/06/11/DataPoints/default.aspx</a>).   
There the author states, that you should open the database connection INSIDE the TransactionScope.
This becomes logical, when you know that there is also a parameter you can add to
the connection string named "auto-enlist" defaulting to true, that tells ADO.NET to
look for an ambient transaction when connecting. So, if you open the database connection
and then open a TransactionScope, the database does not seem to care about the ambient
transaction.
</p>
        <p>
I haven't tried yet, if this solves my problems. But since this is quite an important
matter, I wonder why Microsoft does not point this out clearly. The TransactionScope
may be a really great invention, but if you don't know how to use it, it causes damage
instead of making things safer.
</p>
        <p>
          <b>[Update]</b>: This did not fix the problem. Instead, I built a test-app containing
both a method, which first opens the database, then the TransactionScope, and a method
doing it the other way around. Both methods have the same result. And that is VERY
disappointing: The changes to the database made during the Transaction's non-timeout-ed
period are rolled back, all changes AFTER the transaction times out are committed.
I've written a post in the MSDN-Forum concerning Transactions Programming (<a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;SiteID=1">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;SiteID=1</a>).
Let's see what they come up with.
</p>
        <img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=df5d0c40-8876-45ac-abce-f05e96c9426a" />
      </body>
      <title>TransactionScope, ADO.NET, and Timeouts</title>
      <guid isPermaLink="false">http://www.coeamyd.net/PermaLink,guid,df5d0c40-8876-45ac-abce-f05e96c9426a.aspx</guid>
      <link>http://www.coeamyd.net/PermaLink,guid,df5d0c40-8876-45ac-abce-f05e96c9426a.aspx</link>
      <pubDate>Tue, 31 Oct 2006 09:58:24 GMT</pubDate>
      <description>&lt;p&gt;
Happy Halloween everyone!
&lt;/p&gt;
&lt;p&gt;
Today I'll tell you about some problems I've been having with the TransactionScope
class. Namely, I've had timeouts running out, but the application still running the
nested queries until they were finished. Amazingly, the data seemed to be in the tables,
although the TimeoutException was thrown.
&lt;/p&gt;
&lt;p&gt;
This has now happened to me in multiple applications. But today I read an article
on the System.Transactions namespace (&lt;a href="http://msdn.microsoft.com/msdnmag/issues/06/11/DataPoints/default.aspx"&gt;http://msdn.microsoft.com/msdnmag/issues/06/11/DataPoints/default.aspx&lt;/a&gt;).&amp;nbsp;&amp;nbsp;&amp;nbsp;
There the author states, that you should open the database connection INSIDE the TransactionScope.
This becomes logical, when you know that there is also a parameter you can add to
the connection string named "auto-enlist" defaulting to true, that tells ADO.NET to
look for an ambient transaction when connecting. So, if you open the database connection
and then open a TransactionScope, the database does not seem to care about the ambient
transaction.
&lt;/p&gt;
&lt;p&gt;
I haven't tried yet, if this solves my problems. But since this is quite an important
matter, I wonder why Microsoft does not point this out clearly. The TransactionScope
may be a really great invention, but if you don't know how to use it, it causes damage
instead of making things safer.
&lt;/p&gt;
&lt;p&gt;
&lt;b&gt;[Update]&lt;/b&gt;: This did not fix the problem. Instead, I built a test-app containing
both a method, which first opens the database, then the TransactionScope, and a method
doing it the other way around. Both methods have the same result. And that is VERY
disappointing: The changes to the database made during the Transaction's non-timeout-ed
period are rolled back, all changes AFTER the transaction times out are committed.
I've written a post in the MSDN-Forum concerning Transactions Programming (&lt;a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;amp;SiteID=1"&gt;http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=876150&amp;amp;SiteID=1&lt;/a&gt;).
Let's see what they come up with.
&lt;/p&gt;
&lt;img width="0" height="0" src="http://www.coeamyd.net/aggbug.ashx?id=df5d0c40-8876-45ac-abce-f05e96c9426a" /&gt;</description>
      <comments>http://www.coeamyd.net/CommentView,guid,df5d0c40-8876-45ac-abce-f05e96c9426a.aspx</comments>
      <category>.NET;Development;ADO.NET</category>
    </item>
  </channel>
</rss>