Creating a hierarchical dataset

  • Thread starter Thread starter Anita C
  • Start date Start date
A

Anita C

Hi,
I'd like to create a hierarchical dataset for the different subdirectories
etc(however deep the structure may be) while iterating through the directory
structure starting at a particulardirectory on the server machine
"C:\inetpub\wwwroot\myapplication\startingpoint.
How can I achieve the above? A sample will be great.
Thanks in advance.
 
Hi Anita,

Dataset does not directly support this.
You might want to create a table with autoincrement primary key, and another
which acts like a link to primary key (beside name column, etc).
In this way you'll have hierarchy.
 
Back
Top