Your solution:
UPDATE table SET field = field + 1
is absolutely perfect. That is a single SQL statement, which is fully executed without side effect or not at all. All you could additionally do is, to check weather your statement was actually executed. If not, you could retry to execute it. But there is no real reason for that. You can leave it as it is... In most cases when correctly written statements fail, there is another reason (like an overloaded DB) and retrying would make things even worse.
If you only have short write/read accesses to that table everything is fine; if concurrent commands need to access it, they will wait until the lock is freed and they will execute then.
Only if you have very time consuming operations on THAT same table that take more than 1-2 seconds to execute. Then you might loose some countings. The timeout to wait for aquiring the lock is usually something as 10 oder 30 seconds. You could also loose counts, if a process does just manually lock the table (e.g. "LOCK table") and does not free it. This would be a bug ... Other SQL statements wouldnt be able to aquire a lock and finally would be aborted after some longer waiting period.