1
vote
3answers
40 views
Nested join on same table (tree structure)
My date is organized in tree structure.
The following applies (Oracle SQL syntax):
CREATE TABLE TREE
(
NAME VARCHAR2(20),
ID NUMBER(10, 0),
PARENT NUMBER(10, 0)
)
;
INSERT …
3
votes
7answers
1k views
Where can I find .NET Framework class diagram?
I just need a file (picture, pdf or other type file for printing) of the framework structure.
It is very usefull while learning .Net framework.
1
vote
1answer
44 views
Retrieving a Type’s leaf interfaces
The System.Type class provides a GetInterfaces() method that "gets all the interfaces implemented or inherited by the current Type".
The problem is that "The GetInterfaces method …
0
votes
3answers
552 views
Transitioning between subviews in a navigationController?
Hello,
In my app I have a drill-down type interface as follows:
My root view, which has a list of items and an "Add" button.
Selecting an item pushes the "Detail" view on the navi …
2
votes
2answers
121 views
What’s the best method to separate nested discussions over multiple pages - for web application?
I am designing a threaded message display for a PHP/MySQL application - like comments on Slashdot or Youtube - and am wondering how I should go about ordering the comments and sepa …
0
votes
3answers
73 views
OrgCharts - Did you write something custom or use shrink-wrapped tool?
I'm just wondering what other developers have done in this area.
What does your organization do to get a hierarchical view of your reporting structure? Did you write something cus …
