The usual approach with recursive data structures is to have a parent pointer in each object. My problem is that the usual implementation can't answer the questions below in a single operation; instead I need to query my database several times. Is there a solution which gives me the result in a single query?
Get a list of all children of a node
Find all parent nodes (== shortest path to the root node)
Note: I'm in the planning stage, so I'm not yet limited to a certain database.
At least Oracle can do hierarchical queries. Consider example of db users' roles:
Now select all roles of user 'CM_MARY':
Result:
COMMERCIAL_DEP
CREATE_ORDERS
CLIENT
SELECT_ORDERS
Select all roles and users, who owns role 'CLIENT'
Result:
CL_JOHN
CL_MATT
COMMERCIAL_DEP
CM_MARY
UPDATE:
Since you mentioned, tree will be pretty static, it may be interesting to try Joe Celko's Trees (aprox 180 lines to read). It doesn't require self joins at all! So, I expect it to perform times faster then CONNECT BY. Though I've just read about it just 30 min ago, and don't know how good it is in real world
Update2: "Nested Set Models" with MySQL: Managing Hierarchical Data in MySQL This is the same as Joe Celko's Trees above but with more examples and explanation.