Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
7answers
13k views

How to store directory / hierarchy / tree structure in the database?

How do i store a directory / hierarchy / tree structure in the database? Namely MSSQL Server. @olavk: Doesn't look like you've seen my own answer. The way i use is way better than recursive queries ...
13
votes
11answers
6k views

Optimized SQL for tree structures

How would you get tree-structured data from a database with the best performance? For example, say you have a folder-hierarchy in a database. Where the folder-database-row has ID, Name and ParentID ...
2
votes
2answers
59 views

I need to show data in a drop down like a tree structure, I tried but could not get it right in ASP.Net

I am working on a CMS which supports multiple Language and i want drop-down to show "pageNames" created similar to example below Home Page Second Page -Child Page1 -Child Page2 Third Page -Child ...
2
votes
4answers
80 views

Best practice for storing tree data in a database

I think the classic form of the problem is you have employees and employees have managers so the manager has a manager unless he's the CEO. So how do you store the data? Solution 1: It would seem ...
2
votes
3answers
483 views

Packing tree into array in Javascript

Ok, so this shouldn't be difficult, however I have encountered weird and bizarra flukes. I am trying to pack a tree into an array, where each node is something like: title: string-for-display key: ...
1
vote
4answers
137 views

Creating an effecient friendlist using PHP

I would like to build a website that has some elements of a social network. So I have been trying to think of an efficient way to store a friend list (somewhat like Facebook). And after searching a ...
1
vote
2answers
103 views

How to execute jquery call on data returned with jquery $.post call

I have a page that uses jquery to turn an html table into a file structure using jquery treeTable plug in. The html table is in a div called "treeStructure" I have the ability to add a new folder to ...
0
votes
2answers
45 views

Creating a tree datastructure - different approach

In the passed I've asked many questions about tree datastructures, but it seems I didn't take it to the correct manner in C++. In the way I wrote the datastructure I couldn't think of a single manner ...
0
votes
1answer
39 views

Rails 3, MySQL, tree structure

I need to one of my project use a tree structure. I found this link and I tried it to use. My table structure looks this: id user_id parent_id lft rgt When I try to create a root, so I will do ...
0
votes
2answers
68 views

root in tree like structure with auto-referencing foreign keys

My application uses some kind of "virtual folders" so I need to store the tree structure in the database. The table holding the data is quite simple, it has 3 columns: id_folder (int, primary key) ...
0
votes
3answers
87 views

Tree search function

Any node can have any number of children. To search this tree i wrote something like this function Search(key, nodes){ for (var i = 0; i < nodes.length; i++) { if (nodes[i].key == key) ...