February 4, 2012 at 11:56 pm
sergeyledenev (2/4/2012)
Might be out of scope, but on my last job I was issued to create the similar table structure to keep there the contact information. The demand was in order to keep the different contact schemas in the same table.I've gone with the other approach (it was not too easy to get the boss' agreement :-))
Instead of the single table with contact information I've implemented the structure of 2 tables: the contact and contact_details. The contact_details has 3 columns: contact_id, value and value_type_id.
That all allowed me to avoid such problems as sorting. And has used the storage more efficient way.
Depending on the number of nullable "columns", I agree that's one way to use storage more efficiently. I don't understand how using such an EAV table would allow you to avoid sorting problems, though. In fact it would seem to exacerbate the problem a bit. For example, if the EAV contained a FirstName, LastName, and PhoneNumber, how would you sort based on LastName and FirstName?
--Jeff Moden
Change is inevitable... Change for the better is not.
February 8, 2012 at 4:41 pm
I was using the xml format for the output. Tha app sorted the set by itself. The major benefit is the indexed value field - which is any of the contact's info.
As there should be the reasonable amount of records - the task is affordable for the app
Viewing 2 posts - 16 through 16 (of 16 total)
You must be logged in to reply to this topic. Login to reply