I\'m using a MySQL database and accessing it through Java.
PreparedStatement prep1 = this.connection.prepareStatement( \"UPDATE user_table
Calling executeUpdate() on your PreparedStatement should return an int, the number of updated records.