Click here to Skip to main content
15,893,381 members
Articles / Database Development / SQL Server / SQL Server 2008

A simple example of SQL server admin tools.

Rate me:
Please Sign up or sign in to vote.
4.90/5 (43 votes)
13 Sep 2009CPOL8 min read 109.9K   5K   115  
A simple example of SQL server admin tools.
using System;

namespace GUInterface
{
    public class ClsGlobal
    {

        private string m_ConnectionString = null;
        public string ConnectionString
        {
            set { m_ConnectionString = value; }
            get { return m_ConnectionString; }
        }

        private string m_ServerIP;
        public string ServerIP
        {
            set { m_ServerIP = value; }
            get { return m_ServerIP; }
        }
        private string m_Port;
        public string Port
        {
            set { m_Port = value; }
            get { return m_Port; }
        }
        private string m_LoginID;
        public string LoginID
        {
            set { m_LoginID = value; }
            get { return m_LoginID; }
        }
        private string m_Pasword;
        public string Password
        {
            set { m_Pasword = value; }
            get { return m_Pasword; }
        }
        private string m_Database;
        public string Database
        {
            set { m_Database = value; }
            get { return m_Database; }
        }

        private string m_dbObject;
        public string SqlObject
        {
            set { m_dbObject = value; }
            get { return m_dbObject; }
        }

        private int m_ObjectType;
        public int SqlObjectType
        {
            set { m_ObjectType = value; }
            get { return m_ObjectType; }
        }

        private string m_NTSecurity;
        public string NTSecurity
        {
            set { m_NTSecurity = value; }
            get { return m_NTSecurity; }
        }

        private int m_RootLevel;
        public int RootLevel
        {
            set { m_RootLevel = value; }
            get { return m_RootLevel; }
        }

    }
}

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)



Comments and Discussions