Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does CouchDB supports referential integrity?

I am new to CouchDB and learning about it. I did not come across CouchDB support for referential integrity. Can we create a foreign key for a field in the CouchDB document?

For e.g. Is it possible to ensure a vendor name used in a order document is available in the vendor database?

Does CouchDB support referential integrity? And Is it possible to make a field in a document as Primary key?

like image 554
Sundar Avatar asked Dec 23 '09 06:12

Sundar


2 Answers

No, CouchDB doesn't do foreign keys as such, so you can't have it handle the referential integrity of the system for you. You would need to handle checking for vendors in the application level.

As to whether you can make a field a primary key, the primary key is the _id field, but you can use any valid json as a key for the views on the db. So, for instance you could create a view of orders with their vendor as the key.

something like

function(doc) {
  if (doc.type == 'order')
    emit(doc.vendor,doc);
}

would grab all the docs in the database that have a type attribute with the value order and add them to a view using their vendor as the key.

Intro to CouchDB views

like image 173
BaroqueBobcat Avatar answered Oct 23 '22 09:10

BaroqueBobcat


These questions are incredibly relational database specific.

In CouchDB, or any other non-RDBMS, you wouldn't store your data the same way you would in an RDBMS so designing the relationship this way may not be best. But, just to give you an idea of how you could do this, lets assume you have a document for a vendor and a bunch of documents for orders that need to "relate" back to the vendor document.

There are no primary keys, documents have an _id which is a uuid. If you have a document for a vendor, and you're creating a new document for something like an order, you can reference the vendor documents _id.

{"type":"order","vendor-id":"asd7d7f6ds76f7d7s"}

To look up all orders for a particular vendor you would have a map view something like:

function(doc) { if (doc.type == 'order') {emit(doc['vendor-id'], doc)}}

The document _id will not change, so there is "integrity" there, even if you change other attributes on the vendor document like their name or billing information. If you stick the vendor name or other attributes from the vendor document directly in to the order document you would need to write a script if you ever wanted to change them in bulk.

Hope that helps a bit.

like image 8
mikeal Avatar answered Oct 23 '22 09:10

mikeal