Statement.executeUpdate()
or execute()
followed by getUpdateCount()
will return the number of rows matched, not updated, according to the JDBC spec. If you want the updated count, you can specify useAffectedRows=true
as a non-standard URL option. More information is available here.