[
Lists Home |
Date Index |
Thread Index
]
> > Celko often writes about this approach to prove that it can
> be done, but it
> > just goes to convince me that it shouldn't be done.
> >
>
> Ok, I'll bite: care to explain? Is it just the simple forms of
> adjacency list you don't like or all nested set approaches?
Relational databases work well when rows in tables correspond to objects in
the real world. If you need to design your own data structures to represent
graphs, lists, trees and the like, then it's interesting to know that it's
feasible to map such structures onto bags/sets of tuples, but this doesn't
make it my preferred implementation technique. I don't see what I gain by
having to model all my data using this very limited set of structures. Celko
is showing how you can do multiplication using a system that only supports
addition, and thereby convinces me that I'm better off using a system that
can do multiplication.
Michael Kay
http://www.saxonica.com/
|