Re: Preorder tree traversal algorithm

2004-05-24 Thread Don
Chris, I've implemented an entiy-relationship schema into a generic search application, sample deployment url, http://68.32.63.205/snap/ddSearch.cfm A tree view of entity-relationship is at beta stage. btw, what DBMS are you folks are using at UCSB? Regards, Don Tim, Not sure if you

Re: Preorder tree traversal algorithm

2004-05-24 Thread Christopher Dempsey
Don, Thanks, I'm not exactly sure how I could use your site for my app.The Graduate Division uses MSSQL 2K. Thanks, Chris On Mon, 24 May 2004, Chunshen Li wrote: Chris, I've implemented an entiy-relationship schema into a generic search application, sample deployment url,

Re: Preorder tree traversal algorithm

2004-05-24 Thread Don
Chris, I think my tree view of entity-relationship and data view would be closer to what you have in mind, but I don't intend to make it public for now, care to take a peak at it?My email address, donli at hegelsoftware dott com. Thanks. Don Don, Thanks, I'm not exactly sure how I could use

Re: Preorder tree traversal algorithm

2004-05-23 Thread Chris Dempsey
Tim, Not sure if you received any hits on this, but I'm trying to do something similar.I have the same sort of db structure as the Sitepoint article, but I'm trying to build a select list.I would like to show all rows, but append the parent titles on to the left of the title. For this table:

Preorder tree traversal algorithm

2004-05-19 Thread Tim Blair
Afternoon, Has anyone written an example of modified preorder tree traversal [http://www.sitepoint.com/print/hierarchical-data-database] for MySQL in CF?I've done inserts and deletes (plus various selects) but I haven't sat down to work out updates (moving a node from one parent to another) yet,