Adding in database
Posted: Thu Jun 01, 2006 9:57 pm
is there anyway to add 1 to the current number in the database, where if another user does it at the same time they both will process?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Yes, with most databases writes are what is called atomic -- meaning that each pending write is processed only after the previous one is completed.tecktalkcm0391 wrote:even with a MySQL Database.