Click here to Skip to main content
15,894,955 members
Articles / Database Development / SQL Server

A SQL Management Console for MSSQL 2000 & 2005, MySQL 5.0,...

Rate me:
Please Sign up or sign in to vote.
4.86/5 (14 votes)
20 Apr 2008Ms-PL4 min read 68.6K   2.5K   68  
An article on a SQL IDE for different type of RDBMS databases
//-----------------------------------------------------------------------
//  This file is part of the Microsoft .NET SDK Code Samples.
// 
//  Copyright (C) Microsoft Corporation.  All rights reserved.
// 
//This source code is intended only as a supplement to Microsoft
//Development Tools and/or on-line documentation.  See these other
//materials for detailed information regarding Microsoft code samples.
// 
//THIS CODE AND INFORMATION ARE PROVIDED AS IS WITHOUT WARRANTY OF ANY
//KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
//IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//PARTICULAR PURPOSE.
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace SQLMgtConsole
{
	public delegate void ToolWindowEventHandler(object sender, ConvertEventArgs e);

	class ToolWindowEventArgs : EventArgs
	{
		// Property fields
		private IToolWindow _toolWindow;

		public ToolWindowEventArgs(IToolWindow toolWindow)
		{
			_toolWindow = toolWindow;
		}

		// Properties
		public IToolWindow ToolWindow
		{
			get
			{
				return _toolWindow;
			}
		}
	}
}

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 Microsoft Public License (Ms-PL)


Written By
Software Developer
Malaysia Malaysia
My blog: http://start-coding.blogspot.com/

Comments and Discussions