SSIS:将模式添加到xml文件

时间:2012-10-18 19:32:42

标签: xml ssis xmltextwriter

我需要从数据库中提取数据并通过ssis创建一个xml文件。到目前为止,我已经创建了一个可以成功创建xml文件的脚本(使用XmlTextWriter),列出了所有必要的数据,但是,他们也想要文件中列出的模式,我不知道该怎么做。

这是我当前创建xml文件的代码(在我的数据流中使用脚本组件):

StreamWriter sw;
XmlTextWriter xWriter;
String rowName;
String collectionName;
private int[] columnNames;    
public override void PreExecute()
{


    rowName = "Responses";
    collectionName = "NewDataSet";
    String fileName = Variables.FullFileName;        
    xWriter = new XmlTextWriter(fileName, null);
    xWriter.WriteStartDocument();
    xWriter.WriteStartElement(collectionName);
}

public override void PostExecute()
{        

    xWriter.WriteEndElement();
    xWriter.WriteEndDocument();
    xWriter.Close();
}

public override void Input0_ProcessInputRow(Input0Buffer Row)
{
    Type rowType = Row.GetType();
    PropertyInfo columnValue;

    xWriter.WriteStartElement(rowName);
    foreach (IDTSInputColumn100 column in this.ComponentMetaData.InputCollection[0].InputColumnCollection)
    {
        columnValue = rowType.GetProperty(column.Name);
        xWriter.WriteStartElement(column.Name);

        Object value = columnValue.GetValue(Row, null);
        if(value != null)
        {
            xWriter.WriteValue(value.ToString());

        }

        xWriter.WriteEndElement();
    }      
}

如何向此添加架构信息?我见过“WriteXmlSchema”的教程,但这似乎只适用于数据集(我没有使用)。

我非常感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分:1)

如果您只需要引用xml文档中的现有模式,那么它只是根元素中的一个属性。见this tutorial re XML schemas。在该页面上的示例中,在写入对模式的引用之后 xWriter.WriteStartElement(collectionName); 添加

xWriter.WriteAttributeString("xsi:schemalocation", "http://www.w3schools.com note.xsd") 

如果您需要创建xsd架构文档,有多种方法可以执行此操作。我建议谷歌搜索“从......创建xsd”。