How can I edit a certain data entry in MySQL? for example I have table about a personal information, but I only want to edit the First Name table, can i just do it like this?

"Update Personal_Info
set first_name='"+getFirstName()+"' ,last_name = ?
where emp_id = 2011-01015" 

Where the question mark in the last name will retain it's value.I am using this kind of approach, because I do not want to hard code everything. you see in my UI , I'll use a form where the user will choose if he want's to update only the first name and last name. I came up with this idea since it would be easier for me. but suggestions are welcome.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Include only those columns whose value you want to update. Suppose if you want to update first_name then statement will be:

String sql="Update Personal_Info set first_name=? where emp_id=?";
PreparedStatement ps=conn.prepareStatement(sql);
ps.setString(1,getFirstName()); // set parameter value for first_name
ps.setString(2,"2011-01015");   //     parameter value for emp_id    
ps.executeUpdate();
ps.close();
conn.close();

EDIT:

String sql="Update Personal_Info set first_name=? where emp_id='2011-01015'";
PreparedStatement ps=conn.prepareStatement(sql);
ps.setString(1,getFirstName()); // set parameter value for first_name
ps.executeUpdate();
ps.close();
conn.close();
link|improve this answer
on the ps.setString(2,"2011-01015") is there any other way? other than that??? – user962206 Dec 11 '11 at 10:13
@user962206 - You can use variable or something like getEmpid(). – AVD Dec 11 '11 at 10:19
other than that? can I just setString(1,defaultvalueofthatfield); is there anything like that or retain it's current value?? – user962206 Dec 11 '11 at 10:46
@user962206 - Have a look at edited post. – AVD Dec 11 '11 at 10:52
Thank you! I am sorry for giving a late feedback, this was still last years but it did help! sorry. anyways thank you soo much! – user962206 Feb 14 at 18:03
feedback

Yes, you can do this way. But you should consider using PreparedStatements to omit possible SQL injections in your app.

link|improve this answer
wiht the question mark, I mean I will retain the current value of last name – user962206 Dec 11 '11 at 9:28
@user962206 - Nope! – AVD Dec 11 '11 at 9:30
then how could I do that?? is there any way? – user962206 Dec 11 '11 at 10:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.