I have the following function in my c# silverlight application to find the total sub nodes of a node in the tree
I have a situation where I want to have a stored proc returning a table that calls itself recursively as part of its calculation.
I have so category and this categories have unlimited sub category. In Database Table, Fields are ID, UpperID and Title.
My data (spre开发者_如何学Cadsheet): \'1\',,, ,\'1.1\',, ,,\'1.1.1\', ,,\'1.1.2\', ,,\'1.1.3\', ,\'1.2\',,
I use CakePHP 1.2.6 and have the following relations: Showcase HABTM User belongsTo Galleryitem hasOne Image
I have this recursion loop where inside the function I have atleast 2 ajax get/post, and the recursion happens after the first ajax get. my function structure is like this,
Need some help in creating function which can create folders recursively with giving开发者_运维技巧 path:
Here\'s the situation: Let\'s say I have a model A in django. When I\'m saving an object (of class A) I need开发者_高级运维 to save it\'s fields into all other objects of this class. I mean I need e
I have an assignment where I am supposed to be able to display the path of a maze from the entrance to the exit and I have gotten it to work to a degree but when the maze gets more complicated with de
I would like to convert flat form data to recursive JSON data in python or javascript. This JSON data can later be interpreted by a template engine (google for tempest, it has django like syntax). The