Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using java to connect to a mySQL database, if I use a update query like

Update <table_name> set SID='143' where SATR='temp';

and query.execute() return two, that is two entries with SATR as 'temp', but if I check the database no change !

share|improve this question

2 Answers

up vote 4 down vote accepted

Have you turned off auto-commit but forgotten to explicitly call commit() by any chance?

share|improve this answer

If you are not getting any exceptions,you may call commit() method.

auto-commit option may be off.

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.