Hi all,
I have some financial transactions to perform in my system like cash deposits, withdrawals etc.I have built my system using PHP and MySQL. Can someone explain me how can i use rollback operations if something failure occurs?
Heshan.
financial transactions of a php project
Moderator: General Moderators
- superdezign
- DevNet Master
- Posts: 4135
- Joined: Sat Jan 20, 2007 11:06 pm
Re: financial transactions of a php project
Rollbacks are generally handled by the database. The most common method for doing so that I've seen is to make the queries atomic by using stored procedures.