I am building Inventory Application using PhoneGap.In that i have one module STOCK for stock management.
Stock Table Query
CREATE TABLE STOCK (
    sto_id INTEGER PRIMARY KEY AUTOINCREMENT,
    pro_id INTEGER FOREIGNKEY REFERENCES PRODUCT(pro_id) UNIQUE,
    quantity TEXT
)
INSERT OR REPLACE Query
INSERT OR REPLACE INTO STOCK (pro_id,quantity) VALUES ("1","5");
There is not a single issue with this query its working perfectly but i want to update SUM of OLD VALUES WITH NEW ONE.
Example:
pro_id quantity   
1       5
This is existing record so now when i will fire above query for new transaction which have 3 quantity then quantity should be (5 (old) +  3 (new) ) = 8. 
So after updateing record it looks like.
pro_id quantity   
1       8
How can i solve this any idea. or let me know if i am on wrong way. Thanks.
 
     
     
    