If one were to implement a tree using a 4GL like C#, and storing it in a database, such as SQL Server 2008, what would the schema/design look like?
In other words, what role would the database play in such an implementation?
|
If one were to implement a tree using a 4GL like C#, and storing it in a database, such as SQL Server 2008, what would the schema/design look like? In other words, what role would the database play in such an implementation? |
||||
|
|
Storing the TreeThere are several options:
NOTE: In the case of the suffix array, you won't be storing any characters, you'd just store the indexes describing each element, something like this:
You'd also have to separately store the "target" string (e.g. in a CLOB in another table). Using the Tree
|
||||
|
|
|
Tree structures in an RDBMS is usually handled with a combination of cross-reference tables and recursive queries.
You'd use a query like this:
Which should generates results like so:
|
|||
|
|