C
|
cgphp 8/18/2011 |
If you want to prevent simultaneous update of the same data you can use record locking: http://xlinesoft.com/phprunner/docs/audit.htm |
M
|
Mel2011 author 8/18/2011 |
If you want to prevent simultaneous update of the same data you can use record locking: http://xlinesoft.com/phprunner/docs/audit.htm
|
![]() |
Admin 8/19/2011 |
Here is the sample code: CustomQuery("update customers set balance=balance+" . $values["PaymentAmount"] . " where customer_id = " . $values["customer_id"]);
|
M
|
Mel2011 author 8/19/2011 |
Here is the sample code: CustomQuery("update customers set balance=balance+" . $values["PaymentAmount"] . " where customer_id = " . $values["customer_id"]);
|