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

  • Home
  • SEARCH
  • 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 609211
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:32:29+00:00 2026-05-13T17:32:29+00:00

I recently upgraded my MySQL data adapter from v5 to v6. When I use

  • 0

I recently upgraded my MySQL data adapter from v5 to v6. When I use the v5 MySQL Data Adapter this code below worked perfectly. However since I have begun using v6 of the data adapter, when I add a new record, it does not return the “new” ID of the record. Does anyone know an elegant way to achieve this?

protected void SetRecord(ref T Data, string Sql)
    {
        //
        // Get a connection to use
        //
        string connectionKey = "";
        MySqlConnection Connection = ConnectionManager.Current.OpenConnection(out connectionKey);

        MySqlDataAdapter da;
        MySqlCommandBuilder cb;
        DataTable dt = new DataTable();
        DataRow dr;

        da = new MySqlDataAdapter(Sql, Connection);
        da.Fill(dt);
        //
        // If there is more than one row, then edit 1st row, else add new row
        //
        if (dt.Rows.Count > 0)
        {
            dr = dt.Rows[0];
            DatabaseRow_Set(ref dr, Data);

            //
            // Update the DataSet with the Database
            //
            cb = new MySqlCommandBuilder(da);
            da.Update(dt);

        }
        else
        {
            dr = dt.NewRow();
            DatabaseRow_Set(ref dr, Data);
            dt.Rows.Add(dr);

            //
            // Update the DataSet with the Database
            //
            cb = new MySqlCommandBuilder(da);
            da.Update(dt);

            //
            // Call get from data row to get new ID
            //
            DatabaseRow_Get(dr, ref Data);
        }

        //
        // Close Connection
        //
        ConnectionManager.Current.CloseConnection(connectionKey);
    }
  • 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-05-13T17:32:30+00:00Added an answer on May 13, 2026 at 5:32 pm

    I cant find out why this functionality worked in v5 and is now not working in v6. However, I did find a workaround.

                    dr = dt.NewRow();
                    DatabaseRow_Set(ref dr, Data);
                    dt.Rows.Add(dr);                
                    //
                    // Update the DataSet with the Database
                    //
                    cb = new MySqlCommandBuilder da);                                                
                    da.Update(dt);                
    
                    MySqlCommand cmd = new MySqlCommand("select LAST_INSERT_ID()", Connection);
                    long ID = ((long) cmd.ExecuteScalar());
                    DatabaseRow_GetID(ref Data, ID);                
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Recently upgraded from BC 1.34 to 1.45. I'm decoding some previously-encoded data with the
I have recently upgraded to Rails 3 and created a new application with Rails
I recently upgraded my iPhone app to a universal binary. I have 2 view
I recently upgraded our project's jQuery file from 1.4.2 to 1.4.4 and it appears
I recently upgraded to xCode 3.2.5 and iOS 4.2 . After this, the app
I recently upgraded my XAMPP from PHP 5.2 to 5.3.1 I seem to be
We recently upgraded from IIS 5.0 and windows 2000 to IIS 7 and windows
I've recently upgraded from Carbon Emacs (v22.3) to vanilla Emacs 23.2 (from http://www.emacsformacosx.com ).
I recently upgraded Moose to v1.15 and found that a set of modules I
I recently upgraded to the iOS4 SDK and my app no longer compiles for

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.