Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7941435
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:40:16+00:00 2026-06-03T23:40:16+00:00

I am using a ado.net helper class from Here . I don’t know how

  • 0

I am using a ado.net helper class from Here. I don’t know how to use transaction using the helper. Below is the code I have tried. Am I doing the right thing? I always hit the This SqlTransaction has completed; it is no longer usable. error.

            Adodb.ConnectionString = "...";

            Adodb db = new Adodb(); 
            SqlTransaction trans = db.BeginTransaction();

            try
            {
                string qry = "UPDATE PSCHCounter SET SeqNo = '0' WHERE CountID = 'PCSTL'";
                db.ExecNonQuery(qry);
                string qry1 = "UPDATE PSCHCounter SET SeqNo = '1' WHERE CountID = 'GJNLP'";
                db.ExecNonQuery(qry1);

                // Commit 
                trans.Commit();
            }
            catch (Exception ex)
            {
                try
                {
                    // Rollback
                    trans.Rollback();
                    // Log exception
                }
                catch (Exception ex2)
                {
                    // Log exception
                }
            }
            finally
            {
                // Close db connection
                db.Dispose();
            }

Thank you.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T23:40:18+00:00Added an answer on June 3, 2026 at 11:40 pm

    The problem is you are calling trans.Commit() instead of db.Commit(). This worked for me:

        AdoHelper.ConnectionString = "...";
    
        using (AdoHelper db = new AdoHelper())
        {
            // Start the transaction
            db.BeginTransaction();
    
            try
            {
                db.ExecNonQuery("UPDATE FeedItems SET Title = 'Test3' WHERE Id = 456");
                db.ExecNonQuery("UPDATE FeedItems SET Title = 'Test4' WHERE Id = 457");
    
                // Commit  
                db.Commit();
            }
            catch (Exception ex)
            {
                db.Rollback();
            }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some existing code that retrieves data from a database using ADO.NET that
I have Entity Data Model using ADO.NET Entity Data Model (using auto generate from
I'm using ADO.NET Unit Testable Repository Generator ( described here ) to generate the
I am using ADO.NET (.NET 1.1) in a legacy app. I know that DataAdapter.Fill()
I am trying to develop an application using ADO.NET. I have two tables in
In my project I am using Ado.Net's DbTransaction object to manage transaction... Then why
While using ADO.NET (maybe i am wrong, i dont know what its called) i
i am using ADO.Net oledb for inserting and fetching data from Excel database. I
In C# using ado.net, how to know just the number of rows that may
I was using ADO.Net in my .Net projects from the past few years. Now

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.