This is my situation, I'm getting data from my Shopify shop via API and saving them to a database. My problem is how to prevent duplicate records from infesting the database. any code snippet about this? Thank you! i want only the new entries made from the shop to be saved instead of having all the entries enter the database over and over again.

link|improve this question
Please provide some code – Ant Aug 8 '11 at 9:58
feedback

1 Answer

You can either add a validates_uniqueness_of :field in your model, or use a UNIQUE constraint in your database, or both.

The duplicate entries will raise an exception, which you can catch and ignore.

link|improve this answer
so if this is the data in my shop coming to my database: 1,2,3,4,5 and i add the value 6, (data is now 1,2,3,4,5,6) only 6 will be saved in my database? is that it? i'm having this error: ActiveRecord::RecordNotUnique – Aldrin dela Cruz Aug 8 '11 at 10:02
Each piece of data goes in one by one. If it violates a constraint, an exception should be thrown. Just ignore the exception and move on to the next record. – Gaurav Gupta Aug 8 '11 at 10:04
yes i think it violates the constraint that i did in the database that's why i'm having that error. So how can i make that exception and move on to the next record? the error keeps me from moving on. sorry i'm a rails newbie. – Aldrin dela Cruz Aug 8 '11 at 10:06
1  
begin //your code here rescue Exception => e //do nothing here end – Gaurav Gupta Aug 8 '11 at 10:08
Now i'm having this error: dynamic constant assignment :( – Aldrin dela Cruz Aug 8 '11 at 10:16
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.