Click here to Skip to main content
15,867,453 members
Articles / Web Development / ASP.NET

Tree utilities in SQL Server 2000 and 2005, and OLAP implementations

Rate me:
Please Sign up or sign in to vote.
4.72/5 (25 votes)
19 Jul 2006CPOL11 min read 153.7K   3.3K   107  
This article describes how to efficiently store and access tree structures in a SQL Server database, and how to use them in OLAP implementations.
using System;
using System.Configuration;

namespace tree_util
{
	/// <summary>
	/// Summary description for Config.
	/// </summary>
	public class Config
	{
		public Config()
		{
		}

		public static string ConnectionString = ConfigurationSettings.AppSettings["ConnectionString"];
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer Telstra Internet
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions