我目前正在努力通过强制执行给定的 XmlSchema 将 XMLdata 读入数据表。无论我做什么,在数据导入之后,所有类型都设置回“字符串”。我需要强制以下 ID 列的类型为“int”(不是“string”或“byte”):
$schema = '
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:group name="r">
<xs:sequence>
<xs:element name="id" type="xs:int" />
<xs:element name="name" type="xs:string" />
</xs:sequence>
</xs:group>
<xs:complexType name="body">
<xs:group ref="r" />
</xs:complexType>
</xs:schema>'
$data = '
<body>
<r>
<id>9</id>
<name>AAA</name>
</r>
<r>
<id>10</id>
<name>BBB</name>
</r>
</body>'
# read the schema:
$set = [System.Data.Dataset]::new()
$sr =[System.IO.StringReader]::new($schema)
$set.ReadXmlSchema($sr)
# read the data:
$sr =[System.IO.StringReader]::new($data)
$set.ReadXml($sr)
cls
$set.Tables | ft -AutoSize
write-host "type of column 'id' in table : " $set.Tables[0].Columns[0].DataType
$list = [System.Collections.ArrayList]::new($set.Tables[0].GetList())
write-host "type of column 'id' in list : " $list[0].id.GetType()
我还对 XMLReadMode 进行了一些测试,但是当我使用 [System.Data.XmlReadMode]::InferTypedSchema 时,会出现唯一的变化,但这会根据该列的数据将类型更改为“字节”或其他内容。
任何帮助都非常受欢迎!提前谢谢你。