Tagged Questions

0
votes
1answer
50 views

Convert flat data into a hierarchical python list

I have a data model from my database. This is a flat python list sorted by left values. > id name left right > 1 Beginning 1 6 > 2 FOO 2 5 > 3 BAR …
1
vote
2answers
105 views

Parent - Child sql query

id parent_id 1 0 2 0 3 2 4 0 5 1 6 0 I need a query that will return parent rows (parent_id=0) followed by its child rows: first parent all children of first paren …
0
votes
3answers
53 views

What is the best way to group and aggregate and sum tree data?

Given a self referencing table Item ------------- Id (pk) ParentId (fk) With a related table of associated values ItemValue ------------- ItemId (fk) Amount And some sample …
0
votes
1answer
51 views

Sql question: Getting Parent rows followed by child rows

id parent_id 1 0 2 0 3 2 4 0 5 1 6 0 I need a query that will return parent rows (parent_id=0) followed by its child rows first parent all childre …
0
votes
1answer
2k views

Advanced DataGrid Flex 3 - ItemRenderer and Tree display

Hi, I am using Advanced DataGrid of Flex 3 with hierarchical data. The itemRenderer is a TextInput which accepts numbers. When I enter data into the given field and click the corr …
1
vote
1answer
185 views

Hierarchical Structure Vs Flat Structure

What are the pros and cons of using hierarchical data structure over flat data structure (more like tagging systems in blogs) Ecommerce systems like ebay, yahoo shopping and yello …
-2
votes
2answers
209 views

Convert hierarchical SQL data to HTML list in a single query…

Has anyone been successful doing this w/o php, asp, etc...? I can get this far: http://www.pastey.net/113859/20 but can't figure out a simple way to make it an HTML list... any hel …
1
vote
0answers
45 views

Hierarchical Grid

Hi, Please help me to create a Hierarchical grid...i wanted to a '+' button in first column of parent grid and on the click of that '+' button i wanted to show the child details.. …
2
votes
3answers
216 views

.Net MVC Passing Nested Data from Controller to View

I am creating a .NET MVC application and I have a view in which I want to display the following: Category followed by a list of items for the current Category [possibly] followe …
1
vote
2answers
204 views

Hierarchical Memory allocator library for C++

My application is mostly organised in layers so I found that something like the APR memory pools would be the best way. While reading on SO about C++ placement new posts here &amp …
3
votes
6answers
484 views

Hierarchical table column in Java

Dear All, Is there any Java library that supports hierarchical column? For example (the first three row are columns) : 2008 | Januar …
3
votes
5answers
597 views

Why LDAP is not popular ?

We start to use LDAP and I wonder why LDAP is not that popular? I read that it has faster reads than database, however slower writes. EDIT: Its the first time i use LDAP and i ha …
0
votes
3answers
224 views

Indented hierarchical table structure

I am trying to create a hierarchical display of nested tables, where each sub level is indented further from the parent. I'm open to using table or div. The closest I've come is be …
4
votes
3answers
325 views

Use Linq to Query for terminal/Leaf nodes in Hierarchical Table/Composite pattern

I have a self-referencing table with an Id, CategoryName, and ParentId. It's a typical scenario of a hierarchy table of categories that can themselves be divided into categories th …
6
votes
2answers
498 views

SORTING Hierarchical Queries in SQL Server 2005

I have following issue: I have a table for maintaining the hierarchical data. I'd like to use CTE from SQL 2005. WITH tree (id, parentid, code, name) AS ( SELECT id, ofs.Paren …