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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T01:26:35+00:00 2026-05-31T01:26:35+00:00

I have written a code to delete a record in a MySQL database from

  • 0

I have written a code to delete a record in a MySQL database from my Java Program. It compiles and runs it successfully, but the record is still in the datbase. Any suggestions?

JButton btnDelete = new JButton("Delete");
btnDelete.addActionListener(new ActionListener() {

    public void actionPerformed(ActionEvent arg0) {

        try {

            Object[] options = {"Yes", "No"};
            Component form = null;
            int n = JOptionPane.showOptionDialog(form, "Do you like to delete the record for Student ID: " +
                    textField_16.getText() + " ?", "Exit Confirmation", JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE, null, options, options);

            if(n == JOptionPane.YES_OPTION) {

                String mock = textField_16.getText();   

                String sql = "DELETE FROM mockexam WHERE MockID =?";
                PreparedStatement prest = con.prepareStatement(sql);
                prest.setString(1, mock);
                int val = prest.executeUpdate();
                JOptionPane.showMessageDialog(frmDeleteMock, "The record has been deleted successfully.");
            }
        } 
        catch (SQLException e) {
            e.printStackTrace();
            JOptionPane.showMessageDialog(frmDeleteMock, "Record couldn't be deleted. Please try again.");
        }       
    }
});

btnDelete.setBounds(45, 235, 89, 23);
panel_1.add(btnDelete);
  • 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-31T01:26:37+00:00Added an answer on May 31, 2026 at 1:26 am
    prest.setString(1, "MockID");
    

    You are looking for a MockID equal to MockID I assume you want to delete a entry with a certain ID use:

    String mockID = "2"; //Set this however you want to set it.
    prest.setString(1, mockID);
    int val = prest.executeUpdate();
    //Check val for what happened.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my application I have written the code to delete the directory from drive
I have written code in Java to access web cam,and to save image... I
I have written this code which accesses the Delete method on Web Service x,
I have written the code for simple update.I am able to insert and delete
I have written code that automatically creates CSS sprites based on the IMG tags
I have written code that opens 16 figures at once. Currently, they all open
I have written some code in my VB.NET application to send an HTML e-mail
I have written jQuery code, in files Main.html and ajax.php . The ajax.php file
I have written some code for playing a .wav through my application. Now I
I have written this code to join ArrayList elements: Can it be optimized more?

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.