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 5961139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T18:55:24+00:00 2026-05-22T18:55:24+00:00

Is there a way in Java using MySQL connector, I can perform a read

  • 0

Is there a way in Java using MySQL connector, I can perform a read modify write atomically, i.e., I want to perform this:

// pseudocode
atomic
{
   r = getRecord();
   r = processRecord(r);
   writeRecord(r);
}

I am a little hesitant to lock the entire table using mysql LOCK command because I can’t reliably unlock the contentious table. I am wondering if there is a better way to do this. Any help is much appreciated. Thanks!

  • 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-22T18:55:25+00:00Added an answer on May 22, 2026 at 6:55 pm

    By atomically, I’m assuming you mean transactionally? If you set the autocommit state on your database connection to false, and commit after each writeRecord(r) then you’ll only be locking record r.

    If you want to ensure that r does not get changed between your getRecord() and writeRecord(r) methods by another process, then you couls apply a shared lock by locking in SHARED MODE

    Something along the lines of :

       // pseudocode
       connection = getConnection();
       connection.setautoCommit(false);
       r = getRecord(connection);
       r = processRecord(r);
       writeRecord(r,connection);
       connection.commit();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are using Java/Spring/Ibatis/MySql. Is there a way with these technologies to manage read-only
Is there a way to map an Entity class (Address.java) to MySQL without using
Is there a way using Java to over-ride the browser authentication dialog box when
Does anybody know if there is a way using java to pass all the
Is there a built-in way to escape user input in java using the JDBC
If you are using Java or JavaScript, is there a good way to do
Is there a way to shutdown a computer using a built-in Java method?
Is there a way to mock object construction using JMock in Java? For example,
Is there a way/tool to auto convert Java source code from using raw types
Is there a Generics Friendly way of using Collection.EMPTY_LIST in my Java Program. I

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.