Click here to Skip to main content
15,884,537 members
Articles / Database Development / SQL Server

.NET Installer that automatically installs MSDE

Rate me:
Please Sign up or sign in to vote.
3.63/5 (7 votes)
26 Jul 2008GPL36 min read 45.4K   557   30  
This project enables developers to create a setup package that automatically installs MSDE and attaches database
										#region TreeModuleExtend
										protected {Table}Entity _Tree{Table}Root = null;
										public void SetTree{Table}Root({Table}Entity _root)
										{
											_Tree{Table}Root = _root;
										}
										
										public {Table}Entity GetTree{Table}Root()
										{
											return _Tree{Table}Root;
										}
										
										public long InsertTree{Table}IdentityToRoot({Table}Entity _detail)
										{
											return _detail.InsertTree{Table}IdentityToRoot(_Tree{Table}Root);
										}
										
										public int InsertTree{Table}ToRoot({Table}Entity _detail)
										{
											return _detail.InsertTree{Table}ToRoot(_Tree{Table}Root);
										}
										#endregion

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 GNU General Public License (GPLv3)


Written By
Software Developer (Senior)
Singapore Singapore
I write code mostly in C#, VB.NET, PHP and Assembly.

Comments and Discussions