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

I think I got it wrong at the 'resultset'. My code for inserting data is :

ResultSet columns = statement.executeUpdate("INSERT INTO Feedback (Username, Feedbacks) VALUES( '" + user + "','"+ msg +"')");

The compilation error is:

Type mismatch: cannot convert from int to String

Can you help me?

share|improve this question

1 Answer

Statement#executeUpdate() doesn't return a ResultSet, but an int representing the affected rows. Fix it as follows.

int affectedRows = statement.executeUpdate(sql);

Or if you aren't interested in the amount of affected rows, just ignore it.

statement.executeUpdate(sql);

By the way, the compilation error at its own is weird. Aren't you looking at the wrong line? The error tells that you're trying to assign an int result to a String, but your code shows that you're trying to assign int result to a ResultSet.


That said and unrelated to your current problem, if user and msg are parts of user-controlled input, then this piece of code is prone to SQL injection attacks. I strongly recommend to replace Statement by PreparedStatement then. See also this tutorial how to use prepared statement.

share|improve this answer
THANKS A MILLION IT WORKS AND I AM SO BLOODY DUMB AND YOU ARE BRILLIANT AND MY SAVIOR!!! Thank you for the fast reply! – Dayne Nov 26 '10 at 2:39
You're welcome :) – BalusC Nov 26 '10 at 2:42
yeah, at first I thought that the *compilation error is weird but when I google it, i found someone having the same problem and another someone mentioned about ResultSet blah blah blah which I don't really get it. None of my data that I want to insert is an integer. So when you mentioned that executeUpdate doesnt return a resultset and you said 'just ignore it', I tried deleting off the resultset and it works! haha – Dayne Nov 26 '10 at 3:09

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.