Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

karl prosser www.karlprosser.com/coder

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

MSH host function in SQL server 2005

// part of a sql server CLR function, and example of hosting MSH in sql server 2005
    [Microsoft.SqlServer.Server.SqlFunction]
    public static SqlString sqlmsh(string input)
    {
        string output;
        Runspace runspace = RunspaceFactory.CreateRunspace();
        runspace.Open();
        Pipeline pipeline = runspace.CreatePipeline(input);
        MshObject myobj =   pipeline.Invoke()[0];
        if (myobj.BaseObject is XmlDocument)
         {
            output = (myobj.BaseObject as XmlDocument).InnerXml;
        } else
            output = myobj.ImmediateBaseObject.ToString();
            
        runspace.Close();
        return new SqlString(output);
    }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS