Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using a MySQL database and accessing it through Java.

PreparedStatement prep1 = this.connection.prepareStatement("UPDATE user_table 
                                                               SET Level = 'Super' 
                                                             WHERE Username = ?");
prep1.setString(1, username);

The update statement above works fine however I'd like to get the number of rows affected with this statement. Is this possible please?

share|improve this question
1  
@Krt_Malta: If the answers worked for you, make sure to accept the best. You can also up-vote good answers :) – Peter Lang Apr 3 '10 at 17:01

3 Answers

up vote 4 down vote accepted

Calling executeUpdate() on your PreparedStatement should return an int, the number of updated records.

share|improve this answer
Lovely :) Thanks guys – Krt_Malta Apr 3 '10 at 16:54

That number is returned when you run the query:

int rows = prep1.executeUpdate(); 
System.out.printf("%d row(s) updated!", rows); 
share|improve this answer

If it is necessary to know how many rows will be affected without executing it, you will have to run a SELECT statement first.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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