KonaKart Community Forum

Installation / Configuration => Programming of KonaKart => Topic started by: jbkapadia on February 26, 2008, 10:15:53 am

Title: is it support ACID property?
Post by: jbkapadia on February 26, 2008, 10:15:53 am
HI!
  I want to know that is konakart support ACID property by default or i have to take care of it.
Like for example i am trying to upadate 5 product from basket using removefrombasket or updatebasket method. Now if exception is generated in between then will it keep changes which i have made or roll back to last stable state.
Title: Re: is it support ACID property?
Post by: pete on February 26, 2008, 10:23:48 am
Hi,

KonaKart takes care of the transaction where multiple database tables are modified during a single API call. For example, the insert of a product involves multiple database tables and if one of the inserts fails, the transaction is rolled back. If you need to manage a higher level transaction between multiple API calls then you have to look after that yourself.

-Pete
Title: Re: is it support ACID property?
Post by: jbkapadia on February 26, 2008, 11:44:24 am
Thanks for support.